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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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": []
        }
    ]
}