Fetcher

A chrome extension built for local-first Social Listening

Fetcher क्या है?

Fetcher https://fetcher.page द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension built for local-first Social Listening"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fetcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Fetcher Fetcher
ID hcjoaaeflhldlbmadokknllgaagbonla
आधिकारिक URL https://chromewebstore.google.com/detail/fetcher/hcjoaaeflhldlbmadokknllgaagbonla
विवरण A chrome extension built for local-first Social Listening
फ़ाइल का आकार 268 KB
स्थापना संख्या 154
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2023-03-08
प्रकाशन तिथि 2022-02-03
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर https://fetcher.page
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://fetcher.page
गोपनीयता नीति पृष्ठ URL https://fetcher.page/privacy_policy.html
समर्थित भाषाएँ 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": []
        }
    ]
}