Skip to content

Instantly share code, notes, and snippets.

@wilkerlucio
Last active March 29, 2016 17:47
Show Gist options
  • Select an option

  • Save wilkerlucio/80f6b935e1e53ace0a2d04f209921186 to your computer and use it in GitHub Desktop.

Select an option

Save wilkerlucio/80f6b935e1e53ace0a2d04f209921186 to your computer and use it in GitHub Desktop.
Figwheel Chrome Content Script
{
"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