Add Chrome extension for Read It Later functionality with background script, manifest, and icons. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
410 B
JSON
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"
|
|
}
|
|
}
|