Chromescraper

Easily any data from any webpage

Chromescraperคืออะไร?

Chromescraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย AltIvan และคุณลักษณะหลักของมันคือ "Easily any data from any webpage"

ภาพหน้าจอของส่วนขยาย

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

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

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

                        Extract any data from any website, just right-click it and select "ChromeScrap this!", move the slider to expand the selector until it covers one of the elements you want to scrap. Then check (or un-check) the classes until you are satisfied with the result, it exports the data to google spreadsheets for easy viewing and modifying, if there are columns you don't need just delete them! That's it.

Watch the video if you still have doubts about how to use it!                    

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

ชื่อ Chromescraper Chromescraper
ID gpnnphicgidbmjhcglefdaeildldigfp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/chromescraper/gpnnphicgidbmjhcglefdaeildldigfp
คำอธิบาย Easily any data from any webpage
ขนาดไฟล์ 354 KB
จำนวนการติดตั้ง 5,000
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2015-10-06
วันที่เผยแพร่ 2015-10-06
คะแนน 2.22/5 รวมทั้งหมด 32 คะแนน
ผู้พัฒนา AltIvan
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chromescraper",
    "version": "0.2",
    "description": "Easily any data from any webpage",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "contentSettings",
        "contextMenus",
        "tabs",
        "identity",
        "https:\/\/spreadsheets.google.com\/feeds\/",
        "storage"
    ],
    "oauth2": {
        "client_id": "167010525276-nt5qkngb2dnifsnjg9b70lfkujl3pu30.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/spreadsheets.google.com\/feeds",
            "https:\/\/www.googleapis.com\/auth\/drive"
        ]
    },
    "web_accessible_resources": [
        "utils.js",
        "libs\/*",
        "snippets\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "libs\/require.js",
                "require_config.js",
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "chromescrap.js"
        ]
    }
}