-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
68 lines (67 loc) · 1.65 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"19": "icons/new-tab-32.png",
"38": "icons/new-tab-48.png",
"64": "icons/new-tab-64.png",
"128": "icons/new-tab-128.png"
},
"page_action": {
"browser_style": true,
"default_icon": {
"19": "icons/new-tab-19.png",
"38": "icons/new-tab-38.png"
},
"default_title": "__MSG_buttonDefaultTitle__"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": [
"*://*/c/*",
"*://*/latest",
"*://*/new",
"*://*/top",
"*://*/unread"
],
"js": [
"shared.js",
"forums/discourse.js"
]
},
{
"matches": [
"*://*/*?f=*",
"*://*/*?search_id=newposts*",
"*://*/*?search_id=unreadposts*"
],
"js": [
"shared.js",
"forums/phpbb.js"
]
},
{
"matches": [
"*://*/*?action=unread*",
"*://*/*?board=*"
],
"js": [
"shared.js",
"forums/smf.js"
]
},
{
"matches": ["*://*/forums/privatemessage/index"],
"js": [
"shared.js",
"forums/vbulletin.js"
]
}
]
}