Fetcher

A chrome extension built for local-first Social Listening

Wat is Fetcher?

Fetcher is een Chrome-extensie ontwikkeld door https://fetcher.page, en de belangrijkste functie is "A chrome extension built for local-first Social Listening".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Fetcher

Download Fetcher-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Fetcher Fetcher
ID hcjoaaeflhldlbmadokknllgaagbonla
Officiële URL https://chromewebstore.google.com/detail/fetcher/hcjoaaeflhldlbmadokknllgaagbonla
Beschrijving A chrome extension built for local-first Social Listening
Bestandsgrootte 268 KB
Aantal Installaties 154
Huidige Versie 0.1.1
Laatst Bijgewerkt 2023-03-08
Publicatiedatum 2022-02-03
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://fetcher.page
E-mail [email protected]
Betalingswijze in_app
Extensiewebsite https://fetcher.page
URL van de Privacybeleid Pagina https://fetcher.page/privacy_policy.html
Ondersteunde Talen 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": []
        }
    ]
}