Feedly Subscribe Button

Easily Subscribe RSS and Atom Feeds to Feedly.

Co to jest Feedly Subscribe Button?

Feedly Subscribe Button to rozszerzenie Chrome opracowane przez BrowserNative, a jego główną funkcją jest „Easily Subscribe RSS and Atom Feeds to Feedly.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Feedly Subscribe Button

Pobierz pliki rozszerzeń Feedly Subscribe Button w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Works only on the pages offering RSS or Atom feeds. Click its toolbar button, which takes you to the Feedly.com with the option to subscribe that feed.

Created by BrowserNative, Not created by or affiliated with Feedly.                    

Podstawowe informacje o rozszerzeniu

Nazwa Feedly Subscribe Button Feedly Subscribe Button
ID gbbnddjfcllebfcnihfgmdplgaiejepc
Oficjalny URL https://chromewebstore.google.com/detail/feedly-subscribe-button/gbbnddjfcllebfcnihfgmdplgaiejepc
Opis Easily Subscribe RSS and Atom Feeds to Feedly.
Rozmiar pliku 20.75 KB
Liczba instalacji 11,047
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2023-11-06
Data Publikacji 2017-08-12
Ocena 4.58/5 Łącznie 84 Oceny
Deweloper BrowserNative
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://browsernative.com/feedly-chrome-extension/
Adres URL Strony Pomocy http://browsernative.com/feedly-chrome-extension/
Adres URL Strony Polityki Prywatności https://browsernative.com/extensions-privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "img\/19.png",
            "38": "img\/38.png"
        },
        "default_title": "Subscribe",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/sniff_common.js",
                "js\/doc_start.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "js\/sniff_common.js",
                "js\/feed_finder.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Easily Subscribe RSS and Atom Feeds to Feedly.",
    "homepage_url": "https:\/\/browsernative.com\/feedly-chrome-extension\/",
    "icons": {
        "128": "img\/128.png",
        "48": "img\/48.png"
    },
    "manifest_version": 2,
    "name": "Feedly Subscribe Button",
    "version": "1.3",
    "permissions": [
        "activeTab",
        "storage"
    ]
}