mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
30 lines
641 B
JSON
30 lines
641 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Trackeep Saver",
|
|
"version": "0.1.0",
|
|
"description": "Save the current page or a file to your Trackeep account as a bookmark or upload.",
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "Save to Trackeep"
|
|
},
|
|
"options_page": "options.html",
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"tabs",
|
|
"activeTab",
|
|
"contextMenus"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|