Skip to content

Instantly share code, notes, and snippets.

@jefflab
Created October 4, 2010 23:56
Show Gist options
  • Save jefflab/610683 to your computer and use it in GitHub Desktop.
Save jefflab/610683 to your computer and use it in GitHub Desktop.
{
"name": "test",
"description": "test",
"version": "1",
"background_page": "app/background.html",
"app": {
"launch": {
"local_path": "app/main.html"
}
},
"icons": {
"24": "24.png",
"128": "128.png"
},
"permissions": [
"tabs",
"*://*/*"
],
"content_scripts": [
{
"matches": [ "http://*/*", "https://*/*" ],
"css": ["stylesheets/main.css"],
"js": [ "app/prototype.js", "app/content_script.js"],
"run_at": "document_end",
"all_frames": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment