-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·42 lines (42 loc) · 1.07 KB
/
Copy pathmanifest.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.07 KB
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
{
"manifest_version": 2,
"name": "PushValidator",
"description": "Browser extension that generates a QR code that allows the PushValidator mobile app to validate a user's login attempt.",
"version": "0.0.1",
"icons": {
"64": "icons/smartphone_64.png",
"32": "icons/smartphone_32.png",
"16": "icons/smartphone_16.png"
},
"background": {
"scripts": [
"background_script.js"
]
},
"content_scripts": [{
"matches": [
"*://*.mozilla.org/*"
],
"js": [
"content_script.js"
]
}],
"permissions": [
"webRequest",
"webRequestBlocking",
"tabs",
"<all_urls>"
],
"browser_action": {
"default_icon": {
"64": "icons/smartphone_64.png",
"32": "icons/smartphone_32.png",
"16": "icons/smartphone_16.png"
},
"default_popup": "browserAction/index.html",
"default_title": "PushValidator"
},
"options_ui": {
"page": "options/index.html"
}
}