clearRead

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

Co to jest clearRead?

clearRead to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Extract the body of the article, remove the advertisement, and improve the reading experience.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia clearRead

Pobierz pliki rozszerzeń clearRead w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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 ***                    

Podstawowe informacje o rozszerzeniu

Nazwa clearRead clearRead
ID baloibnlnkndojngfdjgglccifoedkep
Oficjalny URL https://chromewebstore.google.com/detail/clearread/baloibnlnkndojngfdjgglccifoedkep
Opis Extract the body of the article, remove the advertisement, and improve the reading experience.
Rozmiar pliku 130 KB
Liczba instalacji 48
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2018-07-18
Data Publikacji 2018-07-18
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
    ]
}