Skip to content

Instantly share code, notes, and snippets.

@amcmillan01
Created November 27, 2014 03:33
Show Gist options
  • Save amcmillan01/54c464b2dbfe20930d37 to your computer and use it in GitHub Desktop.
Save amcmillan01/54c464b2dbfe20930d37 to your computer and use it in GitHub Desktop.
chrome extension manifest
{
"name": "AppName",
"description": "",
"version": "0.0.1",
"manifest_version": 2,
"icons": {
"48": "logo_enable.png"
},
"permissions": [
"tabs",
"downloads",
"unlimitedStorage",
"http://*/*",
"https://*/*"
],
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": {
"19": "logo_disable.png"
},
"default_title": "page title",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": [
"jquery.min.js",
"content_script.js"
],
"css": [
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment