NsfwExtension / manifest.json
Ravi Pandey
Docker deploy
2fbf461
raw
history blame
No virus
592 Bytes
{
"manifest_version": 2,
"name": "Hello World!",
"description": "This extension shows a Hello World message!",
"version": "1.0",
"permissions": [
"activeTab",
"webRequestBlocking",
"storage",
"declarativeNetRequest",
"hostPermissions",
"declarativeNetRequest",
"<all_urls>"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_icon": "dbit.png",
"default_popup": "window.html"
}
}