Spaces:
Runtime error
Runtime error
File size: 592 Bytes
2fbf461 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
{
"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"
}
} |