Readly

A little Google Reader treatment for Feedly

Что такое Readly?

Readly - это расширение Chrome, разработанное Illia Panasenko, и его основная функция - "A little Google Reader treatment for Feedly".

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

screenshot

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

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

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

                        Most of things it visually changes are applied to list (titles, condensed) view only. What it does:

Makes layout a little more compact, less free space
Grey colour title for read article when it is opened
Smaller images for freakenergy.ru RSS feed (I need it, so it will be here :) )
Favicons are always shown
Some visual fixes

"v" opens article in new background tab                    

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

Название Readly Readly
ID aflgknnjpkjdoapemodkijpmgclcingn
Официальный URL https://chromewebstore.google.com/detail/readly/aflgknnjpkjdoapemodkijpmgclcingn
Описание A little Google Reader treatment for Feedly
Размер файла 64.09 KB
Количество установок 601
Текущая Версия 0.10.4
Последнее Обновление 2021-05-13
Дата публикации 2019-03-07
Рейтинг 4.21/5 Всего 24 оценок
Разработчик Illia Panasenko
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Readly",
    "version": "0.10.4",
    "manifest_version": 2,
    "description": "A little Google Reader treatment for Feedly",
    "icons": {
        "16": "icons\/readly-16.png",
        "32": "icons\/readly-32.png",
        "64": "icons\/readly-64.png",
        "128": "icons\/readly-128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.feedly.com\/home*",
                "https:\/\/www.feedly.com\/home*",
                "http:\/\/cloud.feedly.com\/*",
                "https:\/\/cloud.feedly.com\/*",
                "http:\/\/feedly.com\/*",
                "https:\/\/feedly.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}