Dropshipping Titans Marketplace
Automates your dropship listing creation for Facebook Marketplace and eBay.com (please note that the extension only works on…
Dropshipping Titans Marketplace란 무엇입니까?
Dropshipping Titans Marketplace은(는) https://pauljlipsky.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automates your dropship listing creation for Facebook Marketplace and eBay.com (please note that the extension only works on…"입니다.
확장 프로그램 스크린샷
Dropshipping Titans Marketplace 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Automates your dropship listing creation for Facebook Marketplace and eBay.com (please note that the extension only works on eBay.com and not eBay.uk). The Dropshipping Titans Marketplace Helper helps you add products onto Facebook Marketplace and eBay from other websites like Amazon, Walmart, and Home Depot. It will automatically copy the images, title, and description and create a new Facebook Marketplace listing. The Helper can also increase the price of the item automatically based on your requirements. v3.3 updates: *fixed images on Amazon not being grabbed *Homedebot brand, title, and price not being grabbed *fixed condition filling up in Facebook *fixed some change in Facebook that was preventing us from filling any field programmatically
확장 프로그램 기본 정보
이름 | Dropshipping Titans Marketplace |
ID | phijigpcopjaodnfghhnempkkiikmnen |
공식 URL | https://chromewebstore.google.com/detail/dropshipping-titans-marke/phijigpcopjaodnfghhnempkkiikmnen |
설명 | Automates your dropship listing creation for Facebook Marketplace and eBay.com (please note that the extension only works on… |
파일 크기 | 168 KB |
설치 횟수 | 2,624 |
현재 버전 | 3.3 |
최근 업데이트 | 2023-04-17 |
출시 날짜 | 2021-02-17 |
평점 | 2.22/5 총 18 개의 평점 |
개발자 | https://pauljlipsky.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dropshipping Titans Marketplace", "version": "3.3", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "default_title": "Dropshipping Titans Marketplace", "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "48": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "facebook.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/bulksell.ebay.com\/ws\/eBayISAPI.dll*", "*:\/\/www.ebay.com\/lstng?draftId=*", "*:\/\/*.picupload.ebay.com\/picupload\/main", "https:\/\/www.ebay.com\/sl\/prelist\/identify*", "https:\/\/www.ebay.com\/lstng*" ], "js": [ "ebay.js" ], "all_frames": true, "run_at": "document_end" }, { "matches": [ "*:\/\/*.amazon.com\/*", "*:\/\/*.walmart.com\/*", "*:\/\/*.homedepot.com\/*", "*:\/\/*.autods.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "bg.js" ], "persistent": true }, "web_accessible_resources": [ "*" ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "webRequestBlocking", "webRequest", "tabs", "contextMenus", "clipboardRead", "clipboardWrite" ] } |