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
Eメール [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": []
        }
    ]
}