AliExpress CSV Export

Export data from AliExpress to .csv file.

AliExpress CSV Exportคืออะไร?

AliExpress CSV Export เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://toriox.dev และคุณลักษณะหลักของมันคือ "Export data from AliExpress to .csv file."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AliExpress CSV Export

ดาวน์โหลดไฟล์ส่วนขยาย AliExpress CSV Export ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        -> Exports product details(image src, title, price/price range, shipping cost, etc) and categories(category names) from AliExpress.com to .csv file. 

-> Export orders from your order list to csv.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AliExpress CSV Export AliExpress CSV Export
ID odcddcaphojmekhiocnhbckfibpgkdfj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/aliexpress-csv-export/odcddcaphojmekhiocnhbckfibpgkdfj
คำอธิบาย Export data from AliExpress to .csv file.
ขนาดไฟล์ 1001 KB
จำนวนการติดตั้ง 4,457
เวอร์ชันปัจจุบัน 0.2.9.3
อัปเดตครั้งล่าสุด 2023-08-26
วันที่เผยแพร่ 2020-05-28
คะแนน 3.00/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา https://toriox.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.toriox.dev/privacy-policy.php
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AliExpress CSV Export",
    "version": "0.2.9.3",
    "manifest_version": 2,
    "description": "Export data from AliExpress to .csv file.",
    "author": "Mladen Markovic",
    "background": {
        "scripts": [
            ".\/vendor\/jquery.min.js",
            ".\/components\/basicVariables.js",
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": ".\/assets\/logo\/icon16.png",
        "32": ".\/assets\/logo\/icon32.png",
        "48": ".\/assets\/logo\/icon48.png",
        "64": ".\/assets\/logo\/icon64.png",
        "128": ".\/assets\/logo\/icon128.png"
    },
    "browser_action": {
        "default_title": "AliExpress CSV Export",
        "default_icon": ".\/assets\/logo\/icon128.png",
        "default_popup": "popup.html",
        "scripts": "popup.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "js": [
                ".\/vendor\/jquery.min.js",
                ".\/components\/basicVariables.js",
                ".\/components\/alertMessages.js",
                ".\/components\/aff.js",
                ".\/components\/basic.js",
                ".\/components\/refund.js",
                ".\/components\/ordersPage.js",
                ".\/components\/orderDetailPage.js",
                ".\/components\/orderLogisticsPage.js"
            ],
            "matches": [
                "*:\/\/*.aliexpress.com\/*",
                "*:\/\/*.aliexpress.ru\/*",
                "*:\/\/*.aliexpress.us\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/*.png",
        "\/*.gif",
        "\/options.html",
        ".\/popup.html",
        "*.*"
    ],
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "*:\/\/*.aliexpress.us\/*"
    ]
}