1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-10-01 04:27:40 +02:00
bitwarden-desktop/src/manifest.json
2016-09-29 21:12:49 -04:00

71 lines
1.9 KiB
JSON

{
"manifest_version": 2,
"name": "bitwarden - Free Password Manager",
"short_name": "bitwarden",
"version": "0.0.2",
"description": "bitwarden is a 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_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"content_scripts": [
{
"js": [ "content/autoFill.js" ],
"matches": [ "http://*/*", "https://*/*", "file:///*" ],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"lib/jquery/jquery.js",
"lib/sjcl/sjcl.js",
"lib/sjcl/cbc.js",
"lib/sjcl/bitArray.js",
"lib/q/q.js",
"scripts/tld.js",
"scripts/analyticsCode.js",
"models/api/requestModels.js",
"models/api/responseModels.js",
"models/dataModels.js",
"models/domainModels.js",
"services/utilsService.js",
"services/cryptoService.js",
"services/tokenService.js",
"services/apiService.js",
"services/userService.js",
"services/folderService.js",
"services/siteService.js",
"services/syncService.js",
"services/autofillService.js",
"services/appIdService.js",
"services/passwordGenerationService.js",
"background.js",
"scripts/analytics.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
},
"default_title": "bitwarden",
"default_popup": "popup/index.html"
},
"permissions": [
"tabs",
"contextMenus",
"storage",
"unlimitedStorage",
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
"overlay/popup.html"
]
}