56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "KeePassGO Browser",
|
|
"version": "0.1.0",
|
|
"description": "Fill credentials from KeePassGO on sign-in pages.",
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"32": "icons/icon-32.png",
|
|
"48": "icons/icon-48.png",
|
|
"96": "icons/icon-96.png",
|
|
"128": "icons/icon-128.png"
|
|
},
|
|
"permissions": [
|
|
"activeTab",
|
|
"nativeMessaging",
|
|
"storage",
|
|
"tabs",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_title": "KeePassGO Browser",
|
|
"default_icon": {
|
|
"16": "icons/icon-16.png",
|
|
"32": "icons/icon-32.png"
|
|
},
|
|
"default_popup": "popup.html"
|
|
},
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["http://*/*", "https://*/*"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "browser@keepassgo.com",
|
|
"data_collection_permissions": {
|
|
"required": ["authenticationInfo", "websiteActivity"]
|
|
},
|
|
"strict_min_version": "140.0"
|
|
},
|
|
"gecko_android": {
|
|
"strict_min_version": "142.0"
|
|
}
|
|
}
|
|
}
|