Web Scrapper Module

This extension allows you to scrape details from Website

Web Scrapper Moduleคืออะไร?

Web Scrapper Module เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mad Scientist และคุณลักษณะหลักของมันคือ "This extension allows you to scrape details from Website"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Scrapper Module

ดาวน์โหลดไฟล์ส่วนขยาย Web Scrapper Module ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Web Scrapper Module Web Scrapper Module
ID iffnpffhbgdhdnaoobgecaefaecccnbp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-scrapper-module/iffnpffhbgdhdnaoobgecaefaecccnbp
คำอธิบาย This extension allows you to scrape details from Website
ขนาดไฟล์ 54.8 KB
จำนวนการติดตั้ง 42
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-12-01
วันที่เผยแพร่ 2015-12-01
ผู้พัฒนา Mad Scientist
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Scrapper Module",
    "description": "This extension allows you to scrape details from Website",
    "version": "1.1",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "icons": {
        "128": "logo_icon256.png"
    },
    "background": {
        "scripts": [
            "jquery-min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery-min.js",
                "bridge.js"
            ],
            "matches": [
                "*:\/\/*\/*",
                "*:\/\/*.cozeva.com\/*",
                "*:\/\/*.cozeva.me\/*",
                "*:\/\/fiddle.jshell.net\/*",
                "*:\/\/run.jsbin.io\/*",
                "*:\/\/localhost\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}