Last active
December 17, 2015 01:25
-
-
Save Salgat/c2ffe01667d2df32d0c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the tutorial - Creating a Chrome extension with automatic script injection