-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.json
42 lines (40 loc) · 1.25 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
{
"manifest_version": 2,
"name": "Password Manager",
"description": "This extension connects to your password manager and inserts passwords and usernames into input fields.",
"icons": { "16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128_alpha.png"},
"version": "0.3.14",
"browser_action": {
"default_icon": "iconLoggedOut.png",
"default_popup": "popup/popup.html"
},
"content_scripts":[{"matches":["*://*/*"], "js":["content.js"], "run_at":"document_end", "all_frames": true}],
"background": {
"scripts": [
"ext/commonFunctions.js",
"ext/cryptoWrapper.js",
"ext/account.js",
"ext/backend.js",
"background/context.js",
"background/activeTabAction.js",
"background/backgroundListener.js",
"background/hostCommunication.js",
"ext/sha512.js",
"ext/aes.js",
"ext/pbkdf2.js"
]
},
"permissions": [
"activeTab",
"*://*/*",
"contextMenus",
"storage"
],
"options_ui": {
"page":"popup/options.html",
"chrome_style":true
}
}