Created
December 6, 2020 18:39
-
-
Save DonHaul/5a3b44c730ac9ee1a34f42f3b76410a4 to your computer and use it in GitHub Desktop.
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
{ | |
"manifest_version": 2, | |
"name": "Redactor", | |
"version": "1.0", | |
"description": "Turn the content of pages confidential", | |
"permissions": ["storage","activeTab","tabs"], | |
"options_page": "options.html", | |
"browser_action": { | |
"default_popup": "popup.html", | |
"default_icon": { | |
"128": "images/icon128.png" | |
}, | |
"default_title":"Redactor" | |
}, | |
"background":{ | |
"scripts":["background.js"]}, | |
"content_scripts": [ | |
{ | |
"matches": ["http://*/*","https://*/*"], | |
"js": ["processRules.js","content-script.js"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment