Files
Trackeep/browser-extension/manifest.json
T
2026-04-10 12:06:01 +02:00

54 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "Trackeep Saver",
"version": "0.2.0",
"description": "Smart content detection and quick saving for Trackeep with auto-tagging and recommendations.",
"action": {
"default_popup": "popup.html",
"default_title": "Save to Trackeep"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"tabs",
"activeTab",
"contextMenus",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"*://www.youtube.com/*",
"*://youtube.com/*",
"*://m.youtube.com/*",
"*://youtu.be/*"
],
"js": [
"youtube-content.js"
],
"run_at": "document_idle"
}
],
"commands": {
"quick-save": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Quick save current page to Trackeep"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}