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