forked from aviv-world/aim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1.36 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
{
"manifest_version": 2,
"name": "AVIV Identity Manager - AIM",
"description": "Manage Passwords and Accounts on the AVIV Network",
"version": "1.0",
"author": "AVIV Devteam",
"omnibox": { "keyword" : "aviv" },
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"page": "background.html",
"persistent": true
},
"content_scripts": [ {
"matches": ["<all_urls>"],
"js": ["js/content_script.js"]
}
],
"browser_action": {
"default_icon": "./images/android-chrome-128x128.png",
"default_title": "AVIV Identity Manager",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"activeTab",
"tabs",
"contextMenus",
"idle",
"notifications",
"nativeMessaging",
"storage",
"unlimitedStorage",
"webRequest",
"*://*.aviv.world/"],
"icons": {
"16": "images/android-chrome-128x128.png",
"32": "images/android-chrome-128x128.png",
"48": "images/android-chrome-128x128.png",
"128": "images/android-chrome-128x128.png"
},
"web_accessible_resources": [
"telepathic-elements/*",
"js/*",
"css/*",
"*"
]
}