45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Screwdriver — Non-Conversational AI Tools",
|
|
"version": "1.0.0",
|
|
"description": "Dedicated, non-conversational AI interfaces for developers. Screwdrivers, not Swiss Army knives.",
|
|
"permissions": [
|
|
"storage",
|
|
"activeTab",
|
|
"scripting",
|
|
"contextMenus",
|
|
"clipboardWrite"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"action": {
|
|
"default_popup": "src/popup/popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon16.svg",
|
|
"32": "icons/icon32.svg",
|
|
"48": "icons/icon48.svg",
|
|
"128": "icons/icon128.svg"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "src/background.ts",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["src/content/content.ts"],
|
|
"css": ["src/content/content.css"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"options_page": "src/options/options.html",
|
|
"icons": {
|
|
"16": "icons/icon16.svg",
|
|
"32": "icons/icon32.svg",
|
|
"48": "icons/icon48.svg",
|
|
"128": "icons/icon128.svg"
|
|
}
|
|
}
|