forked from BTMPL/silverbird-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.41 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": "Silver Bird",
"version": "1.9.10.2",
"manifest_version": 2,
"description": "__MSG_extDescription__",
"default_locale": "en",
"browser_action": {
"default_icon": "img/icon19.png",
"default_title": "Silver Bird",
"default_popup": "popup.html?popup"
},
"background": {
"page": "background.html"
},
"permissions": [
"notifications",
"tabs",
"http://*/*",
"https://*/*"
],
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"content_scripts": [
{
"matches": [
"http://twitter.com/oauth/authorize",
"https://twitter.com/oauth/authorize",
"http://api.twitter.com/oauth/authorize",
"https://api.twitter.com/oauth/authorize"
],
"js": [
"lib/3rdparty/jquery.js",
"lib/oauth_authorizer.js"
]
},
{
"matches": [
"http://identi.ca/api/oauth/authorize",
"https://identi.ca/api/oauth/authorize"
],
"js": [
"lib/3rdparty/jquery.js",
"lib/oauth_identica_authorizer.js"
]
}
],
"options_page": "options.html",
"update_url": "http://clients2.google.com/service/update2/crx"
}