Feedly Subscribe Button

Easily Subscribe RSS and Atom Feeds to Feedly.

O que é Feedly Subscribe Button?

Feedly Subscribe Button é uma extensão do Chrome desenvolvida por BrowserNative, e sua principal característica é "Easily Subscribe RSS and Atom Feeds to Feedly.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Feedly Subscribe Button

Baixe arquivos de extensão Feedly Subscribe Button no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Feedly Subscribe Button Feedly Subscribe Button
ID gbbnddjfcllebfcnihfgmdplgaiejepc
URL Oficial https://chromewebstore.google.com/detail/feedly-subscribe-button/gbbnddjfcllebfcnihfgmdplgaiejepc
Descrição Easily Subscribe RSS and Atom Feeds to Feedly.
Tamanho do Arquivo 20.75 KB
Contagem de Instalações 11,047
Versão Atual 1.3
Última Atualização 2023-11-06
Data de Publicação 2017-08-12
Classificação 4.58/5 Total de 84 Avaliações
Desenvolvedor BrowserNative
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://browsernative.com/feedly-chrome-extension/
URL da Página de Ajuda http://browsernative.com/feedly-chrome-extension/
URL da Página de Política de Privacidade https://browsernative.com/extensions-privacy-policy
Idiomas Suportados 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"
    ]
}