MrScraper
MrScraper selector helper tool
MrScraperคืออะไร?
MrScraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mrscraper.com และคุณลักษณะหลักของมันคือ "MrScraper selector helper tool"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MrScraper
ดาวน์โหลดไฟล์ส่วนขยาย MrScraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The MrScraper.com tool lets you easily find CSS selectors from to use with scrapers. Just click on the element you want to target and a CSS selector will be generated for you. Additionally, any CSS selector you type in will be highlighted. Use this to easily detect what elements will be extracted with the current selector.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MrScraper |
ID | bhjedfpgiobfaojogegbmcbocfnbkimh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mrscraper/bhjedfpgiobfaojogegbmcbocfnbkimh |
คำอธิบาย | MrScraper selector helper tool |
ขนาดไฟล์ | 21.63 KB |
จำนวนการติดตั้ง | 105 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2023-02-09 |
วันที่เผยแพร่ | 2023-02-08 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://mrscraper.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://mrscraper.com |
URL หน้าช่วยเหลือ | https://mrscraper.freshdesk.com/support/home |
URL หน้านโยบายความเป็นส่วนตัว | https://mrscraper.com/privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MrScraper", "version": "1.0.0", "description": "MrScraper selector helper tool", "manifest_version": 3, "author": "Kai Sasaki", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+V", "mac": "Command+Shift+V" } } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "web_accessible_resources": [ { "resources": [ "images\/icon-128.png", "templates\/scraper-tool.html" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |