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."입니다.
확장 프로그램 스크린샷
Import Aliexpress product to Facebook 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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'" } |