bitwarden-estensione-browser/src/manifest.json

84 lines
2.1 KiB
JSON
Raw Normal View History

2016-08-31 05:47:38 +02:00
{
"manifest_version": 2,
2016-09-22 07:59:04 +02:00
"name": "bitwarden - Free Password Manager",
"short_name": "bitwarden",
"version": "1.1.0",
2016-09-22 07:59:04 +02:00
"description": "bitwarden is a secure and free password manager for all of your devices.",
2016-08-31 05:47:38 +02:00
"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": [ "content/autoFill.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",
"lib/tldjs/tld.js",
2016-09-03 07:13:09 +02:00
"models/api/requestModels.js",
"models/api/responseModels.js",
"models/dataModels.js",
"models/domainModels.js",
"services/utilsService.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",
"services/autofillService.js",
2016-09-23 05:04:40 +02:00
"services/appIdService.js",
2016-09-18 00:30:57 +02:00
"services/passwordGenerationService.js",
"background.js",
"scripts/analytics.js"
2016-09-22 07:59:04 +02:00
],
"persistent": true
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",
"contextMenus",
2016-09-02 06:50:57 +02:00
"storage",
2016-09-03 06:03:13 +02:00
"unlimitedStorage",
"http://*/*",
"https://*/*"
2016-09-22 05:41:53 +02:00
],
"commands": {
"generate_password": {
"suggested_key": {
"default": "Ctrl+Shift+O",
"mac": "Command+Shift+O"
},
"description": "Generate and copy a new random password to the clipboard."
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
}
}
},
2016-09-22 05:41:53 +02:00
"web_accessible_resources": [
"overlay/popup.html"
2016-09-02 06:50:57 +02:00
]
2016-08-31 05:47:38 +02:00
}