Saturation Doctor
Saturation Doctor
Saturation Doctor란 무엇입니까?
Saturation Doctor은(는) SaturationDoctor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Saturation Doctor"입니다.
확장 프로그램 스크린샷
Saturation Doctor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Our free AI powered chrome extension analyzes any Aliexpress.com product you are viewing in real time. Our algorithm searches the internet for stores selling this product on: Shopify, Amazon, Ebay, and other popular ecommerce platforms. Providing you with a unique score for determining whether you should sell it in your store or not.
확장 프로그램 기본 정보
이름 | Saturation Doctor |
ID | libhomjlepkocjgjpgolfiahecffmlad |
공식 URL | https://chromewebstore.google.com/detail/saturation-doctor/libhomjlepkocjgjpgolfiahecffmlad |
설명 | Saturation Doctor |
파일 크기 | 376 KB |
설치 횟수 | 116 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-12-20 |
출시 날짜 | 2020-12-20 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | SaturationDoctor |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.saturatiod.com |
도움말 페이지 URL | https://www.saturatiod.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Saturation Doctor", "version": "1.0", "description": "Saturation Doctor", "manifest_version": 2, "permissions": [ "https:\/\/www.aliexpress.com\/*", "https:\/\/chrome.google.com\/*", "storage", "unlimitedStorage", "cookies", "https:\/\/www.saturationd.com\/*" ], "background": { "scripts": [ "jquery-3.5.1.min.js", "background.js" ] }, "browser_action": { "default_icon": "icon19.png", "default_popup": "popup.html", "default_title": "Saturation Doctor" }, "minimum_chrome_version": "14", "content_scripts": [ { "matches": [ "https:\/\/www.aliexpress.com\/item\/*" ], "all_frames": false, "run_at": "document_end", "js": [ "jquery-3.5.1.min.js", "js\/toastr.min.js", "content_script.js" ] } ], "icons": { "19": "icon19.png" } } |