Created
December 9, 2018 15:32
-
-
Save filip505/203c7c8d75269506d738018aa7f90664 to your computer and use it in GitHub Desktop.
manifest.json
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": "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