Fetcher

A chrome extension built for local-first Social Listening

O que é Fetcher?

Fetcher é uma extensão do Chrome desenvolvida por https://fetcher.page, e sua principal característica é "A chrome extension built for local-first Social Listening".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Fetcher

Baixe arquivos de extensão Fetcher 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

                        Social Listening done locally.

Fetcher is a social listening tool which helps you keep track of brands related to your business and competitors. That way, you'll never lag behind what your competitors are doing, or what your customers are saying about you.

Fetcher works completely local, which means we use your web-browser to do the listening. Sites visited are not (and never will be!) sent to Fetcher.

By leaving the Fetcher tab open, it does a content pull every 10 minutes. Fetcher only pulls posts which are new, and notifies you when new content.                    

Informações Básicas da Extensão

Nome Fetcher Fetcher
ID hcjoaaeflhldlbmadokknllgaagbonla
URL Oficial https://chromewebstore.google.com/detail/fetcher/hcjoaaeflhldlbmadokknllgaagbonla
Descrição A chrome extension built for local-first Social Listening
Tamanho do Arquivo 268 KB
Contagem de Instalações 154
Versão Atual 0.1.1
Última Atualização 2023-03-08
Data de Publicação 2022-02-03
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor https://fetcher.page
Email [email protected]
Tipo de Pagamento in_app
Site da Extensão https://fetcher.page
URL da Página de Política de Privacidade https://fetcher.page/privacy_policy.html
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension built for local-first Social Listening",
    "version": "0.1.1",
    "manifest_version": 3,
    "name": "Fetcher",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "fetcherFavicon.png"
    },
    "icons": {
        "128": "fetcherFavicon.png"
    },
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "*:\/\/*.fetcher.page\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "fetcherFavicon.png"
            ],
            "matches": []
        }
    ]
}