Import Aliexpress product to Facebook
Copy product details from Aliexpress to Facebook Marketplace. A free dropshipping importer tool.
Import Aliexpress product to Facebook là gì?
Import Aliexpress product to Facebook là một tiện ích mở rộng Chrome được phát triển bởi todd, và tính năng chính của nó là "Copy product details from Aliexpress to Facebook Marketplace. A free dropshipping importer tool.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Import Aliexpress product to Facebook
Tải xuống các tệp mở rộng Import Aliexpress product to Facebook dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Import Aliexpress product to Facebook |
ID | nbgdlpbcbcildnfaopdoddmbdggnohlf |
URL Chính Thức | https://chromewebstore.google.com/detail/import-aliexpress-product/nbgdlpbcbcildnfaopdoddmbdggnohlf |
Mô tả | Copy product details from Aliexpress to Facebook Marketplace. A free dropshipping importer tool. |
Kích Thước Tệp | 58.72 KB |
Số Lần Cài Đặt | 1,003 |
Phiên Bản Hiện Tại | 1.0.6 |
Cập Nhật Lần Cuối | 2024-01-21 |
Ngày Phát Hành | 2020-11-19 |
Đánh Giá | 3.00/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | todd |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |