Skip to content

Instantly share code, notes, and snippets.

@filip505
Created December 9, 2018 15:32
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 filip505/203c7c8d75269506d738018aa7f90664 to your computer and use it in GitHub Desktop.
Save filip505/203c7c8d75269506d738018aa7f90664 to your computer and use it in GitHub Desktop.
manifest.json
{
"manifest_version": 2,
"name": "My Extension",
"version": "1",
"permissions": [
"activeTab",
"storage"
],
"icons": {
"128": "./icon.png"
},
"browser_action": {
"default_icon": "./icon.png",
"default_popup": "index.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"./content.js"
],
"all_frames": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment