Last active
March 29, 2016 17:47
-
-
Save wilkerlucio/80f6b935e1e53ace0a2d04f209921186 to your computer and use it in GitHub Desktop.
Figwheel Chrome Content Script
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
| { | |
| "manifest_version": 2, | |
| "name": "Figwheel Chrome Content Script Demo", | |
| "version": "1", | |
| "description": "", | |
| "content_scripts": [ | |
| { | |
| "matches": ["*://clojure.org/*"], | |
| "js": [ | |
| "util/overrides.js", | |
| "js/goog/base.js", | |
| "js/goog/deps.js", | |
| "js/content-script.js", | |
| "util/start.js" | |
| ] | |
| } | |
| ], | |
| "web_accessible_resources": [ | |
| "util/*", | |
| "js/*" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment