bitwarden-estensione-browser/src/manifest.json

70 lines
1.7 KiB
JSON
Raw Normal View History

2016-08-31 05:47:38 +02:00
{
"manifest_version": 2,
"name": "bitwarden",
"version": "0.0.1",
"description": "Secure and free password manager for all of your devices.",
"homepage_url": "https://bitwarden.com",
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"96": "images/icon96.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"js": [ "autofillContent.js" ],
"matches": [ "http://*/*", "https://*/*", "file:///*" ],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [ "content.js" ],
"matches": [ "http://*/*", "https://*/*", "file:///*" ],
"run_at": "document_start"
}
],
2016-08-31 05:47:38 +02:00
"background": {
2016-09-03 06:03:13 +02:00
"scripts": [
"lib/jquery/jquery.js",
"lib/sjcl/sjcl.js",
"lib/sjcl/cbc.js",
"lib/sjcl/bitArray.js",
"lib/q/q.js",
"scripts/tld.js",
2016-09-03 07:13:09 +02:00
"models/api/requestModels.js",
"models/api/responseModels.js",
"models/dataModels.js",
"models/domainModels.js",
2016-09-03 07:13:09 +02:00
"services/cryptoService.js",
2016-09-03 06:03:13 +02:00
"services/cryptoService.js",
"services/tokenService.js",
2016-09-03 06:38:27 +02:00
"services/apiService.js",
2016-09-03 06:03:13 +02:00
"services/userService.js",
"services/folderService.js",
2016-09-04 03:45:45 +02:00
"services/siteService.js",
2016-09-07 05:30:49 +02:00
"services/syncService.js",
2016-09-03 06:03:13 +02:00
"background.js"
]
2016-08-31 05:47:38 +02:00
},
"browser_action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
},
2016-09-01 04:47:37 +02:00
"default_title": "bitwarden",
2016-09-03 06:03:13 +02:00
"default_popup": "popup/index.html"
2016-09-02 06:50:57 +02:00
},
"permissions": [
2016-09-03 06:03:13 +02:00
"tabs",
"idle",
"notifications",
"contextMenus",
2016-09-02 06:50:57 +02:00
"storage",
2016-09-03 06:03:13 +02:00
"unlimitedStorage",
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*"
2016-09-02 06:50:57 +02:00
]
2016-08-31 05:47:38 +02:00
}