Fetcher

A chrome extension built for local-first Social Listening

Что такое Fetcher?

Fetcher - это расширение Chrome, разработанное https://fetcher.page, и его основная функция - "A chrome extension built for local-first Social Listening".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Fetcher

Скачайте файлы расширений 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": []
        }
    ]
}