mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
083373a24f
- 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
40 lines
877 B
JSON
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"
|
|
}
|
|
}
|