Import Aliexpress product to Facebook

Copy product details from Aliexpress to Facebook Marketplace. A free dropshipping importer tool.

Import Aliexpress product to Facebookคืออะไร?

Import Aliexpress product to Facebook เป็นส่วนขยายของ Chrome ที่พัฒนาโดย todd และคุณลักษณะหลักของมันคือ "Copy product details from Aliexpress to Facebook Marketplace. A free dropshipping importer tool."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Import Aliexpress product to Facebook

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

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

                        This extension will let you copy Aliexpress products and paste them on Facebook Marketplace. 

Instructions:
Just go to the Aliexpress product and click the save button which will appear in the top-right corner. Then wait for the extension to save product details. When done, the button will disappear. Then go to Facebook Marketplace (https://www.facebook.com/marketplace/create/item), and a paste button will appear in the top-right corner. Click the button and wait for the extension to fill out the images, title, price, description.

If something is not working right, you can write in the Support tab or directly to our contact email.                    

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

ชื่อ Import Aliexpress product to Facebook Import Aliexpress product to Facebook
ID nbgdlpbcbcildnfaopdoddmbdggnohlf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/import-aliexpress-product/nbgdlpbcbcildnfaopdoddmbdggnohlf
คำอธิบาย Copy product details from Aliexpress to Facebook Marketplace. A free dropshipping importer tool.
ขนาดไฟล์ 58.72 KB
จำนวนการติดตั้ง 1,003
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2024-01-21
วันที่เผยแพร่ 2020-11-19
คะแนน 3.00/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา todd
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Copy product details from Aliexpress to Facebook Marketplace. A free dropshipping importer tool.",
    "version": "1.0.6",
    "name": "Import Aliexpress product to Facebook",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.facebook.com\/",
        "*:\/\/*.aliexpress.com\/",
        "*:\/\/*.aliexpress.ru\/",
        "*:\/\/*.alicdn.com\/"
    ],
    "browser_action": {
        "default_icon": "icon_512x512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.aliexpress.com\/item\/*",
                "*:\/\/*.aliexpress.com\/store\/product\/*",
                "*:\/\/*.aliexpress.ru\/item\/*",
                "*:\/\/*.aliexpress.ru\/store\/product\/*"
            ],
            "js": [
                "aliexpress.js"
            ],
            "all_frames": false,
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "facebook.js"
            ],
            "all_frames": false,
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "icon_512x512.png"
    },
    "web_accessible_resources": [
        "*.png",
        "*.jpg",
        "*.woff2",
        "*.svg"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}