Skip to content

Instantly share code, notes, and snippets.

@sibnerian
Last active August 29, 2015 14:18
Show Gist options
  • Save sibnerian/2dc66a892f27baeb4d30 to your computer and use it in GitHub Desktop.
Save sibnerian/2dc66a892f27baeb4d30 to your computer and use it in GitHub Desktop.
{
// Required
"manifest_version": 2, // manifest version number (always 2)
"name": "My Extension",
"version": "1.0.0",
// Recommended
"default_locale": "en",
"description": "A plain text description",
"icons": { "16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}, // These icons are used in the Chrome app store, and in any tabs your extension creates
// Pick one (or none)
"browser_action": {...},
"page_action": {...},
// Optional
"author": ...,
"background": {
"scripts": [ "background.js" ],
// Recommended
"persistent": false
},
"content_scripts": [
{
"matches": ["http://www.google.com/*"],
"css": ["mystyles.css"],
"js": ["jquery.js", "myscript.js"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment