forked from cezarsa/silver_bird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·37 lines (37 loc) · 1.09 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
{
"name": "Silver Bird",
"version": "1.9.8.1",
"description": "__MSG_extDescription__",
"default_locale": "en",
"browser_action": {
"default_icon": "img/icon19.png",
"default_title": "Silver Bird",
"popup": "popup.html?popup"
},
"background_page": "background.html",
"permissions": [
"notifications",
"tabs",
"http://*/*",
"https://*/*"
],
"icons": {
"16": "img/icon19.png",
"19": "img/icon19.png",
"32": "img/icon32.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"
}