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": "Fast Reader",
"version": "2.0.0",
"description": "A simple Chrome extension for speed reading \u2014 shows selected text word by word in fullscreen for better focus.",
"permissions": [
"activeTab",
"storage",
"contextMenus",
"windows"
],
"action": {
"default_popup": "src\/popup\/popup.html",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
}
},
"icons": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"background": {
"service_worker": "src\/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src\/content\/content.js"
],
"css": [
"src\/styles\/content.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"src\/hud\/hud.html",
"src\/hud\/hud.js",
"src\/styles\/*.css",
"assets\/icons\/*"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"host_permissions": [
"*:\/\/*\/*"
]
}