-
Notifications
You must be signed in to change notification settings - Fork 67
/
manifest.json
66 lines (64 loc) · 1.79 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
{
"manifest_version": 2,
"version": "0.6.2",
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionShortName__",
"description": "__MSG_extensionDescription__",
"author": "Maxime DOLORES - mdolr",
"default_locale": "en",
"permissions": [
"https://*/*",
"http://*/*",
"file:///*",
"tabs",
"activeTab",
"storage",
"unlimitedStorage"
],
"icons": {
"128": "/images/icon128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"file:///*/*"
],
"js": [
"js/templates/wikipedia.js",
"js/templates/base.js",
"js/templates/reddit.js",
"js/templates/twitter.js",
"js/templates/youtube.js",
"js/templates/stackexchange.js",
"js/templates/soundcloud.js",
"js/templates/github.js",
"js/core.js"
],
"css": [
"css/base.css",
"css/templates/wikipedia.css",
"css/templates/reddit.css",
"css/templates/twitter.css",
"css/templates/youtube.css",
"css/templates/stackexchange.css",
"css/templates/soundcloud.css",
"css/templates/github.css"
],
"run_at": "document_start"
}
],
"background": {
"scripts": ["js/background/auxiliary.js"]
},
"browser_action": {
"default_title": "Survol",
"default_popup": "html/popup.html"
},
"web_accessible_resources": [
"images/upvote.png",
"images/comment.png",
"images/reddit.png"
]
}