Files
read-it-later/manifest.json
T

35 lines
909 B
JSON
Raw Normal View History

2026-07-13 11:11:24 +10:00
{
"manifest_version": 3,
"name": "Shelf — Read Later",
"version": "1.0.0",
"description": "Save pages and links for later, and see them all as a sortable shelf every time you open a new tab.",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": ["storage", "contextMenus", "activeTab", "unlimitedStorage"],
"background": {
"service_worker": "background.js",
"scripts": ["background.js"]
},
"action": {
"default_title": "Save this page to Shelf",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png"
}
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}