clearRead

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

Что такое clearRead?

clearRead - это расширение Chrome, разработанное Unknown, и его основная функция - "Extract the body of the article, remove the advertisement, and improve the reading experience.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения clearRead

Скачайте файлы расширений clearRead в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название clearRead clearRead
ID baloibnlnkndojngfdjgglccifoedkep
Официальный URL https://chromewebstore.google.com/detail/clearread/baloibnlnkndojngfdjgglccifoedkep
Описание Extract the body of the article, remove the advertisement, and improve the reading experience.
Размер файла 130 KB
Количество установок 48
Текущая Версия 1.0.1
Последнее Обновление 2018-07-18
Дата публикации 2018-07-18
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки 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"
    ]
}