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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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"
}
} | |