Web Scraper Helper for Coveo Web Sources

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

Apa itu Web Scraper Helper for Coveo Web Sources?

Web Scraper Helper for Coveo Web Sources adalah ekstensi Chrome yang dikembangkan oleh jdevost, dan fitur utamanya adalah "Helper to quickly create and test web scraping configurations for Coveo Cloud V2 sources.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Web Scraper Helper for Coveo Web Sources

Unduh file ekstensi Web Scraper Helper for Coveo Web Sources dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Web Scraper Helper for Coveo Web Sources Web Scraper Helper for Coveo Web Sources
ID demelhhhnkocnphihjbhpafjnknknkdf
URL Resmi https://chromewebstore.google.com/detail/web-scraper-helper-for-co/demelhhhnkocnphihjbhpafjnknknkdf
Deskripsi Helper to quickly create and test web scraping configurations for Coveo Cloud V2 sources.
Ukuran File 2.33 MB
Jumlah Instalasi 766
Versi Saat Ini 2.1.0
Terakhir Diperbarui 2024-01-22
Tanggal Publikasi 2018-09-14
Penilaian 4.20/5 Total 5 Penilaian
Pengembang jdevost
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/coveo-labs/web-scraper-helper/
URL Halaman Bantuan https://github.com/coveo-labs/web-scraper-helper/tree/master/chrome_extension
URL Halaman Kebijakan Privasi http://www.coveo.com/privacy
Bahasa yang Didukung 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": [
        ""
    ]
}