Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Lumina Reader",
"version": "1.2",
"description": "A clean, distraction-free reading experience for any website.",
"permissions": [
"activeTab",
"storage"
],
"action": {
"default_title": "Toggle Lumina Reader",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"readability.js",
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
]
}