Fetcher

A chrome extension built for local-first Social Listening

Qu'est-ce que Fetcher ?

Fetcher est une extension Chrome développée par https://fetcher.page, et sa fonction principale est "A chrome extension built for local-first Social Listening".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Fetcher

Téléchargez les fichiers d'extension Fetcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Fetcher Fetcher
ID hcjoaaeflhldlbmadokknllgaagbonla
URL Officiel https://chromewebstore.google.com/detail/fetcher/hcjoaaeflhldlbmadokknllgaagbonla
Description A chrome extension built for local-first Social Listening
Taille du Fichier 268 KB
Nombre d'Installations 154
Version Actuelle 0.1.1
Dernière Mise à Jour 2023-03-08
Date de Publication 2022-02-03
Évaluation 3.00/5 Total 2 Évaluations
Développeur https://fetcher.page
Email [email protected]
Type de Paiement in_app
Site Web de l'Extension https://fetcher.page
URL de la Page de Politique de Confidentialité https://fetcher.page/privacy_policy.html
Langues Prises en Charge 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": []
        }
    ]
}