Skip to content

Instantly share code, notes, and snippets.

@yaronv
Created January 19, 2015 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yaronv/af04cad342bbf781cc7b to your computer and use it in GitHub Desktop.
Save yaronv/af04cad342bbf781cc7b to your computer and use it in GitHub Desktop.
{
"manifest_version": 2,
"name": "Google search",
"description": "search for google results",
"version": "1.0",
"background":{
"page": "background.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["assets/js/content.js"]
}
],
"icons": {
"16":"icon16.png",
"48":"icon48.png",
"128":"icon128.png"
},
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html",
"default_title": "Google search"
},
"permissions": [
"notifications",
"tabs",
"background",
"http://*/*",
"https://*/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment