29 lines
616 B
JSON
29 lines
616 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "ClawVault",
|
|
"version": "0.1.0",
|
|
"description": "ClawVault password manager extension",
|
|
"permissions": ["activeTab", "storage", "scripting"],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle"
|
|
}],
|
|
"icons": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
}
|
|
}
|