Feedly Subscribe Button

Easily Subscribe RSS and Atom Feeds to Feedly.

Cos'è Feedly Subscribe Button?

Feedly Subscribe Button è un'estensione di Chrome sviluppata da BrowserNative, e la sua funzione principale è "Easily Subscribe RSS and Atom Feeds to Feedly.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Feedly Subscribe Button

Scarica i file di estensione Feedly Subscribe Button in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Feedly Subscribe Button Feedly Subscribe Button
ID gbbnddjfcllebfcnihfgmdplgaiejepc
URL Ufficiale https://chromewebstore.google.com/detail/feedly-subscribe-button/gbbnddjfcllebfcnihfgmdplgaiejepc
Descrizione Easily Subscribe RSS and Atom Feeds to Feedly.
Dimensione del File 20.75 KB
Conteggio Installazioni 11,047
Versione Corrente 1.3
Ultimo Aggiornamento 2023-11-06
Data di Pubblicazione 2017-08-12
Valutazione 4.58/5 Totale 84 Valutazioni
Sviluppatore BrowserNative
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://browsernative.com/feedly-chrome-extension/
URL della Pagina di Aiuto http://browsernative.com/feedly-chrome-extension/
URL della Pagina della Politica sulla Privacy https://browsernative.com/extensions-privacy-policy
Lingue Supportate 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"
    ]
}