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是由todd開發的Chrome擴展程式,該擴展的主要功能是“Copy product details from Aliexpress to Facebook Marketplace. A free dropshipping importer tool.”。

擴展截圖

screenshot

下載Import Aliexpress product to Facebook擴展crx文件

下載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
官方網址 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'"
}