forked from marcostomazini/Botinder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
47 lines (47 loc) · 1.2 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
{
"name": "Flamite",
"version": "2.0.1",
"manifest_version": 2,
"description": "Unofficial Tinder client.",
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"https://api.gotinder.com/*"
],
"content_security_policy": "script-src 'self' https://api.gotinder.com https://ssl.google-analytics.com 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_icon": "icons/icon.png",
"default_title": "Flamite"
},
"background" : {
"scripts": [
"vendor/jquery.min.js",
"ext/Flamite.js",
"ext/IndexedDB.js",
"ext/Facebook.js",
"ext/Tinder.js",
"ext/background.js"
]
},
"icons" : {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches" : ["https://www.facebook.com/v2.0/dialog/oauth*"],
"include_globs": [
"*464891386855067*redirect_uri=fbconnect%3A%2F%2Fsuccess*",
"*redirect_uri=fbconnect%3A%2F%2Fsuccess*464891386855067*"
],
"run_at": "document_start",
"js": [
"vendor/jquery.min.js",
"ext/facebookAuth.js"
],
"css": ["ext/facebookAuth.css"]
}
]
}