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
公式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
Eメール [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'"
}