Files
read-it-later/manifest.json
T
stefwill 232524ad97 feat: add tags/labels for saved items
- Add free-form tags per item: chip display with remove, inline add (comma-separated, grid view only), and a toolbar tag-filter popover listing every tag in use
- Search now also matches tags; tags sync across devices like every other item field
- Fix Firefox manifest.json compliance for AMO submission: replace the placeholder gecko id with a real UUID, add the now-required data_collection_permissions (bookmarksInfo, since synced items are personal browsing/bookmark data), and bump strict_min_version to 140.0 (142.0 for gecko_android) to match
- Add description.md (elevator pitch / short / detailed descriptions for store listings), PRIVACY.md, and .gitignore for the dist/ packaging output
- Reword all em-dash punctuation across docs and code comments per user preference
2026-07-14 12:44:17 +10:00

41 lines
1.1 KiB
JSON

{
"manifest_version": 3,
"name": "Read it 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", "alarms"],
"background": {
"service_worker": "background.js",
"scripts": ["sync.js", "background.js"]
},
"action": {
"default_title": "Save this page to Read it later",
"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": "{b5bcdd65-958d-4b77-a5d6-ba2684c37a94}",
"strict_min_version": "140.0",
"data_collection_permissions": {
"required": ["bookmarksInfo"]
}
},
"gecko_android": {
"strict_min_version": "142.0"
}
}
}