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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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