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