The manifest.json file for my Chrome Extension
This file contains 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
{ | |
"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