Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Read on",
"version": "0.6.0",
"description": "Remind to read your bookmarks",
"options_ui": {
"page": ".\/dist\/options\/index.html",
"open_in_tab": true
},
"background": {
"service_worker": ".\/dist\/background\/index.mjs"
},
"icons": {
"16": ".\/assets\/logo.png",
"48": ".\/assets\/logo.png",
"128": ".\/assets\/logo.png"
},
"permissions": [
"storage",
"sidePanel",
"bookmarks"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dist\/contentScripts\/index.global.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"dist\/contentScripts\/style.css"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"side_panel": {
"default_path": "dist\/sidepanel\/index.html"
}
}