-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
57 lines (55 loc) · 1.33 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
53
54
55
56
57
{
"manifest_version": 2,
"name": "Haptiq",
"version": "1.0.0",
"description": "Helps you signin to your favorite sites with your Android Phone's Fingerprint Scanner.",
"background":{
"persistent": true,
"scripts": [
"scripts/crypto-js/crypto-js.js",
"scripts/socketio.js",
"scripts/randoms.js",
"scripts/crypto.js",
"scripts/auth.js",
"scripts/background.js"
]
},
"browser_action":{
"default_icon":{
"16": "images/unauthenticated16.png",
"48": "images/unauthenticated48.png",
"128": "images/unauthenticated128.png"
},
"default_title": "Haptiq Authorization",
"default_popup": "popup.html"
},
"content_scripts": [{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [/*"content-scripts/dom-interfacer.js", */"content-scripts/browser-authentication.js"]
}],
"icons": {
"16": "images/unauthenticated16.png",
"48": "images/unauthenticated48.png",
"128": "images/unauthenticated128.png"
},
"permissions": [
"tabs",
"storage",
"activeTab",
"http://*/*",
"https://*/*",
"<all_urls>"
],
"web_accessible_resources": [
"images/*.png",
"static/*.png",
"static/*.js",
"static/*.css",
"static/*.html",
"styles/manage.css",
"images/ic_action_fingerprint.png"
]
}