Files
readitlater_chrome_extension/manifest.json
jared 3dbf791621 Initial commit
Add Chrome extension for Read It Later functionality with background
script, manifest, and icons.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 23:23:15 -05:00

15 lines
410 B
JSON

{
"manifest_version": 3,
"name": "readitlater — Save Page",
"version": "0.1.0",
"action": { "default_title": "Save to readitlater" },
"permissions": ["activeTab", "scripting", "storage"],
"host_permissions": ["https://www.jaredlog.com/*"],
"background": { "service_worker": "background.js" },
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}