31 lines
759 B
JSON
31 lines
759 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", "<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"]
|
|
}
|