Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Created October 17, 2018 22:29
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 jfversluis/db39d63020e3a74841652dac167ffb3e to your computer and use it in GitHub Desktop.
Save jfversluis/db39d63020e3a74841652dac167ffb3e to your computer and use it in GitHub Desktop.
The manifest.json file for my Chrome Extension
{
"name": "Microsoft Docs Langyfier",
"version": "1.4",
"description": "Stop automatic translation from the Microsoft Docs to an unwanted language.",
"manifest_version": 2,
"permissions": [
"webNavigation",
"declarativeContent",
"storage",
"tabs"
],
"background": {
"scripts": ["app/background.js"]
},
"options_page": "app/settings.html",
"page_action": {
"default_popup": "app/popup.html",
"default_icon": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
}
},
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment