Last active
August 29, 2015 14:18
-
-
Save sibnerian/2dc66a892f27baeb4d30 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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