-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
89 lines (89 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"manifest_version": 3,
"name": "Skribbl Typo",
"description": "The most complete toolbox for skribbl.io with namefinder & Discord integration",
"version": "26.3.12",
"author": "tobeh",
"icons": {
"256": "res/icon/256MaxFit.png",
"128": "res/icon/128MaxFit.png",
"32": "res/icon/32CircleFit.png",
"16": "res/icon/16Fit.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{0b67dc2f-1517-451c-b5cb-8b28270b03e6}",
"update_url": "https://toobeeh.github.io/skribbltypo/updates.json"
}
},
"action": {
"default_title": "Skribbl Typo",
"default_icon": "res/icon/128MaxFit.png",
"default_popup": "popup/popup.html"
},
"web_accessible_resources": [
{
"resources": [
"gamePatch.js",
"res/*",
"gifCap/*",
"features/*"
],
"matches": [
"*://skribbl.io/*"
]
}
],
"permissions": [
"activeTab"
],
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"*://skribbl.io/",
"*://skribbl.io/*"
],
"js": [
"features/commands.js",
"features/uiTweaks.js",
"features/drops.js",
"features/capture.js",
"features/cloud.js",
"features/imageTools.js",
"features/emojis.js",
"features/agent.js",
"features/gamemode.js",
"features/brushtools.js",
"features/vision.js",
"features/awards.js",
"content.js"
]
},
{
"run_at": "document_start",
"matches": [
"*://skribbl.io/",
"*://skribbl.io/*"
],
"js": [
"picker/colr_pickr.min.js",
"color.js",
"features/modal.js",
"features/search.js",
"features/sprites.js",
"features/genericFunctions.js",
"features/visuals.js",
"errors.js",
"features/socket.js",
"features/lobbies.js",
"features/imageOptions.js",
"patcher.js"
],
"css": [
"features/style.css",
"picker/colr_pickr.min.css"
]
}
]
}