Web Scraper Helper for Coveo Web Sources

Helper to quickly create and test web scraping configurations for Coveo Cloud V2 sources.

Что такое Web Scraper Helper for Coveo Web Sources?

Web Scraper Helper for Coveo Web Sources - это расширение Chrome, разработанное jdevost, и его основная функция - "Helper to quickly create and test web scraping configurations for Coveo Cloud V2 sources.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Web Scraper Helper for Coveo Web Sources

Скачайте файлы расширений Web Scraper Helper for Coveo Web Sources в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This chrome extension will allow you to quickly create and preview a Web Crawler's advanced config json.                    

Основная информация о расширении

Название Web Scraper Helper for Coveo Web Sources Web Scraper Helper for Coveo Web Sources
ID demelhhhnkocnphihjbhpafjnknknkdf
Официальный URL https://chromewebstore.google.com/detail/web-scraper-helper-for-co/demelhhhnkocnphihjbhpafjnknknkdf
Описание Helper to quickly create and test web scraping configurations for Coveo Cloud V2 sources.
Размер файла 2.33 MB
Количество установок 766
Текущая Версия 2.1.0
Последнее Обновление 2024-01-22
Дата публикации 2018-09-14
Рейтинг 4.20/5 Всего 5 оценок
Разработчик jdevost
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/coveo-labs/web-scraper-helper/
URL страницы помощи https://github.com/coveo-labs/web-scraper-helper/tree/master/chrome_extension
URL страницы политики конфиденциальности http://www.coveo.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Web Scraper Helper for Coveo Web Sources",
    "short_name": "Web Scraper Helper",
    "version": "2.1.0",
    "description": "Helper to quickly create and test web scraping configurations for Coveo Cloud V2 sources.",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "devtools_page": "devtools.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "css\/inject.css"
            ],
            "all_frames": false
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ]
}