clearRead

Extract the body of the article, remove the advertisement, and improve the reading experience.

Was ist clearRead?

clearRead ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Extract the body of the article, remove the advertisement, and improve the reading experience.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

clearRead-Erweiterungs-CRX-Datei herunterladen

Laden Sie clearRead-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        clearRead provides a simple reading mode that removes the influence of reading elements on the page that are not related to the body, allowing you to read articles more focused. The plugin uses shortcut keys to activate and exit the reading mode and supports custom shortcuts.
*** Refresh page after initial installation ***                    

Grundlegende Informationen zur Erweiterung

Name clearRead clearRead
ID baloibnlnkndojngfdjgglccifoedkep
Offizielle URL https://chromewebstore.google.com/detail/clearread/baloibnlnkndojngfdjgglccifoedkep
Beschreibung Extract the body of the article, remove the advertisement, and improve the reading experience.
Dateigröße 130 KB
Installationsanzahl 48
Aktuelle Version 1.0.1
Letztes Update 2018-07-18
Veröffentlichungsdatum 2018-07-18
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "clearRead",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Extract the body of the article, remove the advertisement, and improve the reading experience.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "clearRead",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*"
            ],
            "css": [
                "style\/content.css"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}