Fetcher

A chrome extension built for local-first Social Listening

Co je Fetcher?

Fetcher je rozšíření Chrome vyvinuté https://fetcher.page, a jeho hlavní funkcí je „A chrome extension built for local-first Social Listening“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Fetcher

Stáhněte si soubory rozšíření Fetcher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Fetcher Fetcher
ID hcjoaaeflhldlbmadokknllgaagbonla
Oficiální URL https://chromewebstore.google.com/detail/fetcher/hcjoaaeflhldlbmadokknllgaagbonla
Popis A chrome extension built for local-first Social Listening
Velikost souboru 268 KB
Počet instalací 154
Aktuální Verze 0.1.1
Poslední Aktualizace 2023-03-08
Datum Vydání 2022-02-03
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář https://fetcher.page
E-mail [email protected]
Typ Platby in_app
Webové stránky Rozšíření https://fetcher.page
URL Stránky Zásad Ochrany Soukromí https://fetcher.page/privacy_policy.html
Podporované Jazyky 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": []
        }
    ]
}