Fetcher

A chrome extension built for local-first Social Listening

什麼是Fetcher?

Fetcher是由https://fetcher.page開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension built for local-first Social Listening”。

擴展截圖

screenshot
screenshot
screenshot

下載Fetcher擴展crx文件

下載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
官方網址 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": []
        }
    ]
}