forked from cezarsa/silver_bird
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
executable file
·33 lines (33 loc) · 1019 Bytes
/
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
{
"name": "Chromed Bird",
"version": "1.8.0",
"description": "Chromed Bird is a Twitter extension that allows you to follow your timelines and interact with your Twitter account.",
"browser_action": {
"default_icon": "img/icon19.png",
"default_title": "Chromed Bird",
"popup": "popup.html"
},
"background_page": "background.html",
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
],
"icons": {
"19": "img/icon19.png",
"32": "img/icon32.png",
"48": "img/icon48.png"
},
"content_scripts": [
{
"matches": ["http://twitter.com/oauth/authorize", "https://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"
}