Files
Trackeep/browser-extension/manifest.json
T
Tomas Dvorak 083373a24f feat: major feature updates and cleanup
- Add Redis architecture implementation
- Update browser extension functionality
- Clean up deprecated files and documentation
- Enhance backend handlers for auth, messages, search
- Add new configuration options and settings
- Update Docker and deployment configurations
2026-03-03 11:03:37 +01:00

40 lines
877 B
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>"
],
"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"
}
}