Skip to content

Instantly share code, notes, and snippets.

@Salgat
Last active December 17, 2015 01:25
Show Gist options
  • Save Salgat/c2ffe01667d2df32d0c9 to your computer and use it in GitHub Desktop.
Save Salgat/c2ffe01667d2df32d0c9 to your computer and use it in GitHub Desktop.
{
"name": "MyFirstExtension",
"description": "An extension that injects some javascript on every page",
"version": "2.0",
"permissions": [
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["onLoad.js"]
}
],
"manifest_version": 2,
"web_accessible_resources": ["script.js"]
}
@Salgat
Copy link
Author

Salgat commented Dec 17, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment