Table Scrape
Scrape from tables.
Table Scrapeคืออะไร?
Table Scrape เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://claycodes.org และคุณลักษณะหลักของมันคือ "Scrape from tables."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Table Scrape
ดาวน์โหลดไฟล์ส่วนขยาย Table Scrape ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Scrape data to a CSV from paginated tables using a button labeled with "next".
Github source https://github.com/GoogleChromeLabs/table-scrape.git ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ocglnchcpdjocppfepejjddgieoodaep |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep |
| คำอธิบาย | Scrape from tables. |
| ขนาดไฟล์ | 44.66 KB |
| จำนวนการติดตั้ง | 169 |
| เวอร์ชันปัจจุบัน | 0.0.2 |
| อัปเดตครั้งล่าสุด | 2023-04-14 |
| วันที่เผยแพร่ | 2023-04-05 |
| ผู้พัฒนา | https://claycodes.org |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://www.claycodes.org/google-add-onsextensions/table-scrape |
| URL หน้าช่วยเหลือ | https://www.claycodes.org/google-add-onsextensions/table-scrape |
| URL หน้านโยบายความเป็นส่วนตัว | https://www.claycodes.org/home/privacy-policy |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Table Scrape",
"version": "0.0.2",
"author": "Clay Smith",
"short_name": "Table Scrape",
"default_locale": "en",
"description": "Scrape from tables.",
"icons": {
"19": "images\/19.png",
"32": "images\/32.png",
"38": "images\/38.png",
"36": "images\/36.png",
"64": "images\/64.png",
"128": "images\/128.png"
},
"permissions": [
"storage",
"webNavigation"
],
"host_permissions": [
"https:\/\/*\/*"
],
"action": {
"default_icon": {
"19": "images\/19.png",
"38": "images\/38.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/*\/*"
],
"exclude_matches": [],
"js": [
"contentscript.js"
]
}
],
"background": {
"service_worker": "background.js"
}
} | |