Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ecc521
GitHub Repository: ecc521/gimkit-bot
Path: blob/master/ClickIsTrusted-master/manifest.json
1634 views
1
{
2
"name": "ClickIsTrusted",
3
"version": "1.1.3",
4
"description": "The devil is in the devtools!",
5
"permissions": [
6
"debugger",
7
"activeTab",
8
"declarativeContent",
9
"https://*/*",
10
"http://*/*"
11
],
12
"background": {
13
"scripts": [
14
"background.js"
15
],
16
"persistent": false
17
},
18
"content_scripts": [
19
{
20
"matches": [
21
"https://*/*",
22
"http://*/*"
23
],
24
"js": [
25
"contentScript.js"
26
]
27
}
28
],
29
"browser_action": {
30
"default_icon": {
31
"16": "images/black_16.png",
32
"32": "images/black_32.png",
33
"48": "images/black.png",
34
"128": "images/black.png"
35
}
36
},
37
"icons": {
38
"16": "images/black_16.png",
39
"32": "images/black_32.png",
40
"48": "images/black.png",
41
"128": "images/black.png"
42
},
43
"manifest_version": 2
44
}
45