Created
March 12, 2020 15:27
-
-
Save harrybeckwith/cc2108c13938a468aa6d68cca1a46b75 to your computer and use it in GitHub Desktop.
manifest.json file for chrome extensions
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": "extension name", | |
"description": "extension description", | |
"version": "2.0", | |
"content_scripts": [ | |
{ | |
"matches": ["<all_urls>"], | |
"js": ["app.js"], | |
"css": ["./stamp-duty.css"] | |
} | |
], | |
"browser_action": { | |
"default_icon": "./images/percentage.png", | |
"default_popup": "popup.html" | |
}, | |
"permissions": ["https://rightmove.co.uk/*"], | |
"web_accessible_resources": ["images/*.svg", "stamp-duty.css"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment