Skip to content

Instantly share code, notes, and snippets.

@samjarman
Last active February 19, 2017 06:20
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 samjarman/35314425daf139e8790eda394df35dec to your computer and use it in GitHub Desktop.
Save samjarman/35314425daf139e8790eda394df35dec to your computer and use it in GitHub Desktop.
Chrome Manfiest for content scripts
"content_scripts": [
{
"matches": [
"*://*/*" //Run on every page
],
"js": [
"content-script.js"
],
"run_at": "document_end"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment