-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
109 lines (109 loc) · 3.1 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"manifest_version": 2,
"name": "Eclipse Survival Kit",
"version": "0.3.4",
"description": "An attempt of making Deviantart's Eclipse more usable until devs doing it natively. Not a part of or in anyway approved by DA.",
"author": "Kody Wiremane",
"homepage_url": "https://github.com/KodyWiremane/eclipse-survival-kit",
"icons": {
"32": "images/esk.png",
"128": "images/esk_chrome_store.png"
},
"permissions":
[
"https://www.deviantart.com/*",
"https://forum.deviantart.com/*",
"https://shop.deviantart.com/*",
"storage"
],
"options_page": "core/options.html",
"background":
{
"scripts":
[
"js/lib/logger.js",
"js/lib/utils.js",
"js/lib/config.js",
"core/background.js"
]
},
"content_scripts":
[
{
"matches":
[
"https://www.deviantart.com/*",
"https://forum.deviantart.com/*",
"https://shop.deviantart.com/*"
],
"css":
[
"css/fix-blocking-comment-tooltips.css",
"css/fix-commenter-greedy-link.css",
"css/fix-user-menu-fallout.css",
"css/catchy-watch-update-mark.css",
"css/patch-user-menu.css"
],
"js":
[
"js/lib/logger.js",
"js/lib/timer.js",
"js/lib/utils.js",
"js/lib/config.js",
"js/lib/dom-radar.js",
"js/expose-css-patch-flags.js",
"js/patch-user-menu.js"
],
"run_at": "document_end"
},
{
"matches":
[
"https://www.deviantart.com/*/art/*"
],
"css":
[
"css/fix-zoomed-click-wall.css",
"css/unzoom-side-thumbs.css"
]
},
{
"matches":
[
"https://www.deviantart.com/notifications/watch",
"https://www.deviantart.com/notifications/watch/*"
],
"css":
[
"css/unzoom-watch-thumbs.css"
]
},
{
"matches":
[
"https://www.deviantart.com/*/gallery",
"https://www.deviantart.com/*/gallery/*",
"https://www.deviantart.com/*/favourites",
"https://www.deviantart.com/*/favourites/*"
],
"css": ["css/gallection-numbering.css"]
},
{
"matches":
[
"https://www.deviantart.com/settings/apps",
"https://www.deviantart.com/settings/apps#*",
"https://www.deviantart.com/settings/apps?*"
],
"css":
[
"core/app-settings-widget.css",
"css/lib/esk-buttons.css"
],
"js":
[
"core/app-settings-widget.js"
]
}
]
}