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.
extension/assets/manifest.json

37 lines
973 B
JSON

{
"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"
},
"permissions": ["proxy", "webRequest", "webRequestBlocking", "webNavigation", "<all_urls>"],
"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
}
],
"web_accessible_resources": ["icon@2x.png", "auth.html"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"browser_specific_settings": {
"gecko": {
"id": "contact@lumeweb.com"
}
}
}