Inspect and view changes in Dislexia source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Dislexia",
"description": "A Chrome extension to assist users with dyslexia by providing TTS and STT functionalities.",
"version": "1.2.8",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
}
},
"permissions": [
"activeTab",
"tts",
"scripting",
"contextMenus",
"notifications",
"storage"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"overlay.css",
"overlay.html",
"icons/*"
],
"matches": [
"<all_urls>"
]
}
]
}