Readable Medium.com

Chrome extension which hides Medium.com header, footer and removes automatic sign in modal to improves read experience

Что такое Readable Medium.com?

Readable Medium.com - это расширение Chrome, разработанное Unknown, и его основная функция - "Chrome extension which hides Medium.com header, footer and removes automatic sign in modal to improves read experience".

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

screenshot
screenshot

Скачать файл CRX расширения Readable Medium.com

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

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

                        This extension makes Medium.com more readable by hiding the header/footer when reading the articles.

Both the header and footer can be displayed by scrolling up, it uses a pattern visible on many modern reading sites but for some reason medium doesn't reduce nor hide their header/footer forcing you to have an inferior reading experience.                    

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

Название Readable Medium.com Readable Medium.com
ID jiopenehkeajnaibdidoaaecammkdooo
Официальный URL https://chromewebstore.google.com/detail/readable-mediumcom/jiopenehkeajnaibdidoaaecammkdooo
Описание Chrome extension which hides Medium.com header, footer and removes automatic sign in modal to improves read experience
Размер файла 28.55 KB
Количество установок 344
Текущая Версия 1.0.2
Последнее Обновление 2018-07-01
Дата публикации 2018-07-01
Рейтинг 3.67/5 Всего 3 оценок
Разработчик Unknown
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Readable Medium.com",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Chrome extension which hides Medium.com header, footer and removes automatic sign in modal to improves read experience",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/medium.com\/*",
                "*:\/\/medium.freecodecamp.org\/*",
                "*:\/\/hackernoon.com\/*"
            ],
            "js": [
                "src\/improveReadability.js"
            ],
            "css": [
                "src\/improveReadability.css"
            ]
        }
    ]
}