Shop Scrapper
Scrap data from Shopee/Lazada to clipboard for xlsx
Shop Scrapperคืออะไร?
Shop Scrapper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DEKKENG และคุณลักษณะหลักของมันคือ "Scrap data from Shopee/Lazada to clipboard for xlsx"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shop Scrapper
ดาวน์โหลดไฟล์ส่วนขยาย Shop Scrapper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
copy detail from shopee/lazada product page to clipboard for excel ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | khldfoolkghafkleckahpndhocepjphi |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/shop-scrapper/khldfoolkghafkleckahpndhocepjphi |
| คำอธิบาย | Scrap data from Shopee/Lazada to clipboard for xlsx |
| ขนาดไฟล์ | 42.37 KB |
| จำนวนการติดตั้ง | 27 |
| เวอร์ชันปัจจุบัน | 1.1.7 |
| อัปเดตครั้งล่าสุด | 2019-07-29 |
| วันที่เผยแพร่ | 2019-07-29 |
| ผู้พัฒนา | DEKKENG |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://www.billbuild-studio.com |
| ภาษาที่รองรับ | th |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Shop Scrapper",
"description": "Scrap data from Shopee\/Lazada to clipboard for xlsx",
"version": "1.1.7",
"icons": {
"128": "icon_128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/shopee.co.th\/*"
],
"css": [
"app.css",
"shopee.css"
],
"js": [
"jquery-3.3.1.slim.min.js",
"shopee.js"
],
"run_at": "document_end"
},
{
"matches": [
"*:\/\/www.lazada.co.th\/*"
],
"css": [
"app.css",
"lazada.css"
],
"js": [
"jquery-3.3.1.slim.min.js",
"lazada.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/alert.billbuild-studio.com\/season*"
],
"css": [
"app.css",
"billbuild.css"
],
"js": [
"jquery-3.3.1.slim.min.js",
"billbuild.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.png"
}
} | |