Feedly Favicons

Feedly Favicons

Что такое Feedly Favicons?

Feedly Favicons - это расширение Chrome, разработанное Greg Bradley, и его основная функция - "Feedly Favicons".

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

screenshot

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

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

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

                        Feedly.com is a web application allowing users to subscribe to RSS feeds and view items from those feeds. Those feeds belong to various other web sites. With this extension installed when users on Feedly.com view items that originate from those other web sites instead of just seeing the text title of the item they will also see an icon next to the title representing the web site that the item is from. The icon is obtained from the favicon belonging to the web site.                    

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

Название Feedly Favicons Feedly Favicons
ID bcakaadbcflpijljbkdgmnjaeljfpppa
Официальный URL https://chromewebstore.google.com/detail/feedly-favicons/bcakaadbcflpijljbkdgmnjaeljfpppa
Описание Feedly Favicons
Размер файла 42.75 KB
Количество установок 72
Текущая Версия 1.1.6
Последнее Обновление 2023-09-19
Дата публикации 2019-08-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Greg Bradley
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Feedly Favicons",
    "short_name": "Feedly Favicons",
    "description": "Feedly Favicons",
    "version": "1.1.6",
    "author": "Greg Bradley",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/feedly.com\/i\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "jquery-1.11.1.min.js",
                "main.js"
            ]
        }
    ]
}