Feedbin.me

Subscribe to RSS and Atom news feeds with Feedbin.

Что такое Feedbin.me?

Feedbin.me - это расширение Chrome, разработанное https://sites.google.com/site/haroldmartin, и его основная функция - "Subscribe to RSS and Atom news feeds with Feedbin.".

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

screenshot

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

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

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

                        Detect site feeds and subscribe to them in Feedbin.me from the omnibar.

Based on Google's RSS Subscription Extension

https://github.com/hbmartin/chrome-feedbin                    

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

Название Feedbin.me Feedbin.me
ID obchngnapdeffbdcaonhlobekdfeoekg
Официальный URL https://chromewebstore.google.com/detail/feedbinme/obchngnapdeffbdcaonhlobekdfeoekg
Описание Subscribe to RSS and Atom news feeds with Feedbin.
Размер файла 69.2 KB
Количество установок 144
Текущая Версия 1.1.1
Последнее Обновление 2014-09-18
Дата публикации 2014-09-18
Рейтинг 3.33/5 Всего 9 оценок
Разработчик https://sites.google.com/site/haroldmartin
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки id,de,en,en-GB,fr,nl,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,hi,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feedbin.me",
    "description": "Subscribe to RSS and Atom news feeds with Feedbin.",
    "version": "1.1.1",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "sniff_common.js",
                "doc_start.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "sniff_common.js",
                "feed_finder.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "default_locale": "en",
    "icons": {
        "16": "icon\/16.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "manifest_version": 2,
    "page_action": {
        "default_icon": {
            "19": "icon\/blue.png",
            "38": "icon\/[email protected]"
        }
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ]
}