Skip to content

Instantly share code, notes, and snippets.

@kazu634
Created October 18, 2015 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kazu634/ee0b2711d8d98ba00259 to your computer and use it in GitHub Desktop.
Save kazu634/ee0b2711d8d98ba00259 to your computer and use it in GitHub Desktop.
Chrome Extension Sample
{
"manifest_version": 2,
"name": "My 4th extension",
"version": "0.1",
"description": "testing purpose",
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": ["http://dotinstall.com/*"],
"js": ["myscript.js"]
}
]
}
alert("dotinstall!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment