-
Notifications
You must be signed in to change notification settings - Fork 28
/
manifest.json
29 lines (29 loc) · 875 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
{
"name": "Facebook Friend Exporter",
"description": "Get *your* data contact out of Facebook to Google Contacts or CSV, whether they want you to or not.",
"version": "2.2.0",
"background_page": "background.html",
"options_page": "options.html",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"content_scripts": [ {
"js": [ "/js/lib/jquery-1.5.2.min.js", "/js/content_script.js" ],
"matches": [
"http://*.facebook.com/*",
"https://*.facebook.com/*"
],
"run_at": "document_end"
} ],
"permissions": [
"unlimitedStorage",
"tabs",
"https://m.facebook.com/*",
"http://m.facebook.com/*",
"http://www.google.com/m8/feeds/*",
"https://www.google.com/accounts/OAuthAuthorizeToken",
"https://www.google.com/accounts/OAuthGetAccessToken"
]
}