This repository has been archived on 2023-12-17. You can view files and clone it, but cannot push or open issues or pull requests.
2022-07-29 10:37:20 +00:00
|
|
|
{
|
|
|
|
"description": "Lume Web is your decentralized gateway into the web3 internet, the web owned and controlled by its users",
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "Lume Web",
|
|
|
|
"version": "0.3.0",
|
|
|
|
"homepage_url": "https://lumeweb.com",
|
|
|
|
"icons": {
|
|
|
|
"48": "icon.png",
|
|
|
|
"96": "icon@2x.png"
|
|
|
|
},
|
2022-08-14 17:15:32 +00:00
|
|
|
"permissions": ["proxy", "webRequest", "webRequestBlocking", "webNavigation", "<all_urls>"],
|
2022-07-29 10:37:20 +00:00
|
|
|
"background": {
|
|
|
|
"scripts": ["background.js"]
|
|
|
|
},
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": ["http://kernel.skynet/"],
|
|
|
|
"js": ["bootloader.js"],
|
|
|
|
"run_at": "document_end",
|
|
|
|
"all_frames": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"matches": ["<all_urls>"],
|
|
|
|
"js": ["bridge.js"],
|
|
|
|
"run_at": "document_end",
|
|
|
|
"all_frames": true
|
|
|
|
}
|
|
|
|
],
|
2022-08-13 08:20:00 +00:00
|
|
|
"web_accessible_resources": ["icon@2x.png", "auth.html"],
|
2022-08-14 19:44:35 +00:00
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
|
|
|
|
"browser_specific_settings": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "contact@lumeweb.com"
|
|
|
|
}
|
|
|
|
}
|
2022-07-29 10:37:20 +00:00
|
|
|
}
|