Skip to content

Instantly share code, notes, and snippets.

@harrybeckwith
Created March 12, 2020 15:27
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 harrybeckwith/cc2108c13938a468aa6d68cca1a46b75 to your computer and use it in GitHub Desktop.
Save harrybeckwith/cc2108c13938a468aa6d68cca1a46b75 to your computer and use it in GitHub Desktop.
manifest.json file for chrome extensions
{
"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