Fetcher

A chrome extension built for local-first Social Listening

Fetcher là gì?

Fetcher là một tiện ích mở rộng Chrome được phát triển bởi https://fetcher.page, và tính năng chính của nó là "A chrome extension built for local-first Social Listening".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fetcher

Tải xuống các tệp mở rộng Fetcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fetcher Fetcher
ID hcjoaaeflhldlbmadokknllgaagbonla
URL Chính Thức https://chromewebstore.google.com/detail/fetcher/hcjoaaeflhldlbmadokknllgaagbonla
Mô tả A chrome extension built for local-first Social Listening
Kích Thước Tệp 268 KB
Số Lần Cài Đặt 154
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2023-03-08
Ngày Phát Hành 2022-02-03
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://fetcher.page
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://fetcher.page
URL Trang Chính Sách Bảo Mật https://fetcher.page/privacy_policy.html
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}