This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.json
69 lines (69 loc) · 1.57 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "BitClout Plus",
"description": "BitClout on steroids",
"version": "0.12.4",
"manifest_version": 3,
"content_security_policy": {
"extension_pages": "script-src 'self'; connect-src https://node.deso.org https://bitclout.com; object-src 'self'; frame-ancestors 'none';"
},
"author": "Paul Burke",
"homepage_url": "https://github.com/iPaulPro/BitCloutPlus",
"short_name": "BitClout+",
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"omnibox": {
"keyword": "deso"
},
"content_scripts": [
{
"matches": [
"https://bitclout.com/*",
"https://node.deso.org/*"
],
"js": [
"vendor/tribute/tribute.min.js",
"vendor/buffer/buffer.min.js",
"vendor/sweetalert2/sweetalert2.all.min.js",
"vendor/taboverride/taboverride.min.js",
"lib/common.js",
"lib/embed.js",
"lib/api.js",
"lib/nft.js",
"lib/post.js",
"lib/profile.js",
"lib/follow.js",
"lib/cloutmask.js",
"main.js"
],
"css": [
"vendor/tribute/tribute.css",
"main.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images/*"
],
"matches": [
"https://bitclout.com/*",
"https://node.deso.org/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}