Inspect and view changes in Genuine Reader Mode 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
{
"name": "Genuine Reader Mode",
"version": "1.0",
"manifest_version": 3,
"minimum_chrome_version": "88.0",
"default_locale": "en",
"description": "Determine the content and title of a page, and the zoom in to make view easier. It is the Genuine Reader Mode",
"homepage_url": "http://genuinereader.com",
"icons": {
"16": "src/assets/icons/app/icon-16.png",
"48": "src/assets/icons/app/icon-48.png",
"128": "src/assets/icons/app/icon-128.png"
},
"offline_enabled": true,
"action": {
"default_icon": {
"16": "src/assets/icons/app/icon-16.png",
"32": "src/assets/icons/app/icon-48.png",
"40": "src/assets/icons/app/icon-40.png"
},
"default_title": "Genunie Reader Mode"
},
"externally_connectable": {
"ids": [
"*"
],
"matches": [
"*://genuinereader.com/*",
"*://localhost/*"
]
},
"commands": {
"execute_reader_mode": {
"suggested_key": "Alt+Space",
"description": "Change webpage to Genuine Reader Mode"
},
"execute_wait_mode": {
"suggested_key": "Alt+W",
"description": "Change to wait for webpage completion to start the Genuine Reader Mode"
}
},
"permissions": [
"contextMenus",
"tabs",
"activeTab"
],
"background": {
"service_worker": "src/background/script.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_matches": [
"*://localhost/*",
"*://mail.google.com/*",
"*://*.github.com/*",
"*://www.linkedin.com/feed",
"*://chat.openai.com/chat",
"*://www.youtube.com/",
"*://calendar.google.com/*",
"*://docs.google.com/*",
"*://www.google.com/search?*",
"*://drive.google.com/*",
"*://mail.yahoo.com/*",
"*://*.ixigua.com/*",
"*://*.bing.com/*",
"https://www.google.com/",
"https://www.google.com/maps/"
],
"run_at": "document_start",
"js": [
"src/insert/custom-elements.min.js",
"src/insert/tld.min.js",
"src/insert/script.js"
]
},
{
"matches": [
"https://extensionpay.com/*"
],
"js": [
"src/background/extpay.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"watermark/*"
],
"matches": [
"*://*/*"
]
}
],
"omnibox": {
"keyword": "grm"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}