Skip to content

Instantly share code, notes, and snippets.

@brunobar79
Created November 8, 2012 13:03
Show Gist options
  • Select an option

  • Save brunobar79/4038675 to your computer and use it in GitHub Desktop.

Select an option

Save brunobar79/4038675 to your computer and use it in GitHub Desktop.
default manifest.json
{
"update_url":"http://clients2.google.com/service/update2/crx",
"name": "Text ext",
"version": "1.0.0",
"description": "Test ext",
"background_page": "html/background.html",
"options_page": "html/options.html",
"permissions": [
"tabs",
"cookies",
"http://*/",
"https://*/"
],
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["lib/ext.js"],
"all_frames": false,
"run_at": "document_end"
}
],
"icons": { "16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment