mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
* Add Reading List API sample * Apply suggestions from code review Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> * Add minimum_chrome_version --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
13 lines
325 B
JSON
13 lines
325 B
JSON
{
|
|
"name": "Reading List API Demo",
|
|
"version": "1.0",
|
|
"minimum_chrome_version": "120",
|
|
"manifest_version": 3,
|
|
"description": "Uses the chrome.readingList API to display, update and remove reading list entries.",
|
|
"background": {
|
|
"service_worker": "sw.js"
|
|
},
|
|
"permissions": ["readingList"],
|
|
"action": {}
|
|
}
|