-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·52 lines (48 loc) · 1.26 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
{
"name": "Лепробатя",
"version": "1.0",
"manifest_version": 2,
"description": "Немного улучшает этот ваш Лепрозорий, так-то!",
"homepage_url": "https://github.com/lepers/batya",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"https://*.leprosorium.ru/*"
],
"web_accessible_resources": [
"img/*.png"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://*.leprosorium.ru/*"
],
"css": [
"css/global.css"
],
"js" : [
"js/injectable.js"
]
},
{
"run_at": "document_end",
"matches": [
"https://*.leprosorium.ru/comments/*",
"https://leprosorium.ru/my/inbox/*",
"https://leprosorium.ru/users/*/comments"
],
"css": [
"css/comments.css"
],
"js": [
"js/jquery.js",
"js/comments.js",
"js/comma-colon.js"
]
}
]
}