ScreenScraper
Tool to automatically grab data from sites
ScreenScraperคืออะไร?
ScreenScraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bsalinas.com และคุณลักษณะหลักของมันคือ "Tool to automatically grab data from sites"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ScreenScraper
ดาวน์โหลดไฟล์ส่วนขยาย ScreenScraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Automatically grab sets of data from websites and download it as a CSV or JSON file. Basically, a small extension that acts as a screen scraper and lets your easily scrape data from a website. Let's say you have a website with:Joe SeattleJean AustinBen BostonGrab all that data by selecting ".foo" and then make columns for ".name", ".city", and the "src" attribute of "img". Enjoy your screen scraping!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ScreenScraper |
ID | pfegffhjcgkneoemnlniggnhkfioidjg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/screenscraper/pfegffhjcgkneoemnlniggnhkfioidjg |
คำอธิบาย | Tool to automatically grab data from sites |
ขนาดไฟล์ | 135 KB |
จำนวนการติดตั้ง | 4,020 |
เวอร์ชันปัจจุบัน | 0.3.1 |
อัปเดตครั้งล่าสุด | 2013-07-15 |
วันที่เผยแพร่ | 2013-07-15 |
คะแนน | 3.00/5 รวมทั้งหมด 34 คะแนน |
ผู้พัฒนา | https://bsalinas.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ScreenScraper", "description": "Tool to automatically grab data from sites", "version": "0.3.1", "icons": { "128": "logo_128.png", "48": "logo_48.png", "16": "logo_16.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "all_frames": false, "js": [ "jquery-1.9.1.min.js", "myscript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_title": "ScreenScraper", "default_popup": "popup.html", "default_icon": { "19": "logo_19.png", "38": "logo_38.png" } }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ] } |