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