Feedbin.me

Subscribe to RSS and Atom news feeds with Feedbin.

Vad är Feedbin.me?

Feedbin.me är en Chrome-tillägg utvecklad av https://sites.google.com/site/haroldmartin, och dess huvudfunktion är "Subscribe to RSS and Atom news feeds with Feedbin.".

Tilläggsskärmbilder

screenshot

Ladda ner Feedbin.me-förlängningens CRX-fil

Ladda ner Feedbin.me-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Feedbin.me Feedbin.me
ID obchngnapdeffbdcaonhlobekdfeoekg
Officiell webbadress https://chromewebstore.google.com/detail/feedbinme/obchngnapdeffbdcaonhlobekdfeoekg
Beskrivning Subscribe to RSS and Atom news feeds with Feedbin.
Filstorlek 69.2 KB
Antal Installationer 144
Aktuell Version 1.1.1
Senast Uppdaterad 2014-09-18
Publiceringsdatum 2014-09-18
Betyg 3.33/5 Totalt 9 Betyg
Utvecklare https://sites.google.com/site/haroldmartin
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}