Fetcher

A chrome extension built for local-first Social Listening

What is Fetcher?

Fetcher is a Chrome extension developed by https://fetcher.page, and its main feature is "A chrome extension built for local-first Social Listening".

Extension Screenshots

screenshot
screenshot
screenshot

Download Fetcher Extension CRX File

Download Fetcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Fetcher Fetcher
ID hcjoaaeflhldlbmadokknllgaagbonla
Official URL https://chromewebstore.google.com/detail/fetcher/hcjoaaeflhldlbmadokknllgaagbonla
Description A chrome extension built for local-first Social Listening
File Size 268 KB
Installation Count 154
Current Version 0.1.1
Last Updated 2023-03-08
Publish Date 2022-02-03
Rating 3.00/5 Total 2 Ratings
Developer https://fetcher.page
Email [email protected]
Payment Type in_app
Extension Website https://fetcher.page
Privacy Policy Page URL https://fetcher.page/privacy_policy.html
Supported Languages 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": []
        }
    ]
}