Skip to content

Instantly share code, notes, and snippets.

@DonHaul
Created December 6, 2020 18:39
Show Gist options
  • Save DonHaul/5a3b44c730ac9ee1a34f42f3b76410a4 to your computer and use it in GitHub Desktop.
Save DonHaul/5a3b44c730ac9ee1a34f42f3b76410a4 to your computer and use it in GitHub Desktop.
{
"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