Smart RSS

RSS Reader

Что такое Smart RSS?

Smart RSS - это расширение Chrome, разработанное zakius, и его основная функция - "RSS Reader".

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

screenshot

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

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

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

                        Smart RSS allows you to follow new posts on your favorite websites exposing RSS and Atom feeds in a three pane view, providing background loading of new articles and allowing you to organize sources into folders.                    

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

Название Smart RSS Smart RSS
ID eggggihfcaabljfpjiiaohloefmgejic
Официальный URL https://chromewebstore.google.com/detail/smart-rss/eggggihfcaabljfpjiiaohloefmgejic
Описание RSS Reader
Размер файла 333 KB
Количество установок 3,000
Текущая Версия 2.25.2
Последнее Обновление 2023-03-09
Дата публикации 2020-06-20
Рейтинг 4.48/5 Всего 25 оценок
Разработчик zakius
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/SmartRSS/Smart-RSS
URL страницы помощи https://github.com/SmartRSS/Smart-RSS
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart RSS",
    "description": "RSS Reader",
    "manifest_version": 2,
    "version": "2.25.2",
    "background": {
        "page": "index.html"
    },
    "permissions": [
        "unlimitedStorage",
        "contextMenus",
        "alarms",
        "tabs",
        "",
        "notifications"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "browser_action": {
        "default_title": "Smart RSS",
        "default_icon": {
            "19": "images\/reload_anim_1.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "rssDetector\/scan.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "19": "images\/icon19-arrow-orange.png",
        "48": "images\/48-inverted-round.png",
        "64": "images\/64-inverted-round.png",
        "96": "images\/96-inverted-round.png",
        "128": "images\/128-inverted-round.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+R",
                "mac": "Command+Shift+R",
                "chromeos": "Ctrl+Shift+R",
                "linux": "Ctrl+Shift+R"
            }
        }
    }
}