Fetcher

A chrome extension built for local-first Social Listening

Τι είναι το Fetcher;

Το Fetcher είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://fetcher.page, και η κύρια λειτουργία του είναι "A chrome extension built for local-first Social Listening".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Fetcher

Λήψη αρχείων επέκτασης Fetcher σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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": []
        }
    ]
}