Fetcher

A chrome extension built for local-first Social Listening

Cos'è Fetcher?

Fetcher è un'estensione di Chrome sviluppata da https://fetcher.page, e la sua funzione principale è "A chrome extension built for local-first Social Listening".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Fetcher

Scarica i file di estensione Fetcher 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Fetcher Fetcher
ID hcjoaaeflhldlbmadokknllgaagbonla
URL Ufficiale https://chromewebstore.google.com/detail/fetcher/hcjoaaeflhldlbmadokknllgaagbonla
Descrizione A chrome extension built for local-first Social Listening
Dimensione del File 268 KB
Conteggio Installazioni 154
Versione Corrente 0.1.1
Ultimo Aggiornamento 2023-03-08
Data di Pubblicazione 2022-02-03
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore https://fetcher.page
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://fetcher.page
URL della Pagina della Politica sulla Privacy https://fetcher.page/privacy_policy.html
Lingue Supportate 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": []
        }
    ]
}