Initial commit: Shelf read-later extension

This commit is contained in:
2026-07-13 11:11:24 +10:00
commit d627e6bb44
10 changed files with 876 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"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"
}
}
}