Skip to content

Instantly share code, notes, and snippets.

@yamaaki
Last active August 29, 2015 14:25
Show Gist options
  • Save yamaaki/66693ac9eadc18ed0b25 to your computer and use it in GitHub Desktop.
Save yamaaki/66693ac9eadc18ed0b25 to your computer and use it in GitHub Desktop.
{
"name": "Awesome extension name",
"version": "0.1",
"manifest_version": 2,
"description": "Blah blah blah..",
"icons": {"48": "icon48.png"},
"permissions": [
"tabs", "cookies", "*://*/*"
],
"content_scripts": [
{
"matches": ["http://localhost:3000/*"],
"js": ["jquery.min.js", "content.js"],
"run_at": "document_end"
}
],
"background": {
"scripts": ["background.js"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment