Quickly find code snippets from StackOverflow on your search results
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Stackoverflow Snippets",
"version": "1.0.2",
"description": "Quickly find code snippets from StackOverflow on your search results",
"author": "Darkempire78",
"homepage_url": "https://github.com/Darkempire78/StackOverflow-Snippets",
"permissions": [
"tabs",
"webRequest",
"*://*.google.com/*",
"*://api.stackexchange.com/*"
],
"content_scripts": [
{
"matches": [
"*://*.google.com/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{3981bbc5-4197-4628-b4b2-5d18b5bfbfbf}"
}
}
}