Web Scraper Helper for Coveo Web Sources

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

Cos'è Web Scraper Helper for Coveo Web Sources?

Web Scraper Helper for Coveo Web Sources è un'estensione di Chrome sviluppata da jdevost, e la sua funzione principale è "Helper to quickly create and test web scraping configurations for Coveo Cloud V2 sources.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Web Scraper Helper for Coveo Web Sources

Scarica i file di estensione Web Scraper Helper for Coveo Web Sources in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Web Scraper Helper for Coveo Web Sources Web Scraper Helper for Coveo Web Sources
ID demelhhhnkocnphihjbhpafjnknknkdf
URL Ufficiale https://chromewebstore.google.com/detail/web-scraper-helper-for-co/demelhhhnkocnphihjbhpafjnknknkdf
Descrizione Helper to quickly create and test web scraping configurations for Coveo Cloud V2 sources.
Dimensione del File 2.33 MB
Conteggio Installazioni 766
Versione Corrente 2.1.0
Ultimo Aggiornamento 2024-01-22
Data di Pubblicazione 2018-09-14
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore jdevost
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/coveo-labs/web-scraper-helper/
URL della Pagina di Aiuto https://github.com/coveo-labs/web-scraper-helper/tree/master/chrome_extension
URL della Pagina della Politica sulla Privacy http://www.coveo.com/privacy
Lingue Supportate 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": [
        ""
    ]
}