-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
37 lines (36 loc) · 1011 Bytes
/
manifest.json
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
30
31
32
33
34
35
36
37
{
"manifest_version": 3,
"name": "Ordie Woof Wallet",
"version": "0.0.1",
"description": "Send and receive doginals using Woof Wallet",
"homepage_url": "https://github.com/Ordies/ordie-woof-wallet",
"icons": {
"48": "icons/icon-48.png"
},
"permissions": ["storage", "tabs", "unlimitedStorage", "webRequest", "scripting", "activeTab", "nativeMessaging"],
"host_permissions": ["<all_urls>", "*://dogechain.info/*", "*://dogecoin.earlyordies.com/*", "*://api.blockchair.com/*"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["./popup/content-script.js"],
"css": ["./popup/content-style.css"]
}
],
"action": {
"default_icon": "icons/icon-32.png"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"extension_ids": [],
"matches": ["\u003Call_urls>"],
"resources": ["popup/*"]
}
]
}