Feedbin.me

Subscribe to RSS and Atom news feeds with Feedbin.

Hvad er Feedbin.me?

Feedbin.me er en Chrome-udvidelse udviklet af https://sites.google.com/site/haroldmartin, og dens hovedfunktion er "Subscribe to RSS and Atom news feeds with Feedbin.".

Udvidelsesskærmbilleder

screenshot

Download Feedbin.me-udvidelses-CRX-fil

Download Feedbin.me-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Feedbin.me Feedbin.me
ID obchngnapdeffbdcaonhlobekdfeoekg
Officiel URL https://chromewebstore.google.com/detail/feedbinme/obchngnapdeffbdcaonhlobekdfeoekg
Beskrivelse Subscribe to RSS and Atom news feeds with Feedbin.
Filstørrelse 69.2 KB
Antal Installationer 144
Nuværende Version 1.1.1
Senest Opdateret 2014-09-18
Udgivelsesdato 2014-09-18
Bedømmelse 3.33/5 Samlet 9 Bedømmelser
Udvikler https://sites.google.com/site/haroldmartin
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}