mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-08 09:43:42 +01:00
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"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"
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"node_modules/jquery/dist/jquery.min.js",
|
|
"node_modules/sjcl/sjcl.js",
|
|
"node_modules/sjcl/core/cbc.js",
|
|
"node_modules/sjcl/core/bitArray.js",
|
|
"models/api/requestModels.js",
|
|
"models/api/responseModels.js",
|
|
"services/cryptoService.js",
|
|
"services/cryptoService.js",
|
|
"services/tokenService.js",
|
|
"services/apiService.js",
|
|
"services/userService.js",
|
|
"services/folderService.js",
|
|
"services/siteService.js",
|
|
"background.js"
|
|
]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"19": "images/icon19.png",
|
|
"38": "images/icon38.png"
|
|
},
|
|
"default_title": "bitwarden",
|
|
"default_popup": "popup/index.html"
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"idle",
|
|
"notifications",
|
|
"contextMenus",
|
|
"storage",
|
|
"unlimitedStorage",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
]
|
|
} |