Shop Scrapper
Scrap data from Shopee/Lazada to clipboard for xlsx
什麼是Shop Scrapper?
Shop Scrapper是由DEKKENG開發的Chrome擴展程式,該擴展的主要功能是“Scrap data from Shopee/Lazada to clipboard for xlsx”。
擴展截圖
下載Shop Scrapper擴展crx文件
下載Shop Scrapper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
copy detail from shopee/lazada product page to clipboard for excel 擴展基本資訊
| 名稱 | |
| ID | khldfoolkghafkleckahpndhocepjphi |
| 官方網址 | 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"
}
} | |