Saturation Scout
Determines saturation level of the product sold on Aliexpress
Saturation Scout란 무엇입니까?
Saturation Scout은(는) https://saturationscout.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Determines saturation level of the product sold on Aliexpress"입니다.
확장 프로그램 스크린샷
Saturation Scout 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Dropshipping starts with product research and having an understanding of how competitive or saturated the product you are Dropshipping is, it is the key factor to look after for the product to be a winning one. Saturation Scout Chrome Extension is used in determining whether the product you are Dropshipping is saturated, competitive, or untapped. Along with that, it also shows the list of competitive stores selling that particular product, so you can spy on your competitor's stores and look for more potential products to sell. Our complex algorithm collects data from various resources all over the internet and evaluates the data based on the current market trends and displays the Saturation level of the product to the user. How to use: Simply install the extension through the chrome web store. Go to the product page on AliExpress and once the product page is loaded. Click the extension icon and it will show you the saturation level of the product and the list of other stores selling the product plus give you the number of stores.
확장 프로그램 기본 정보
이름 | Saturation Scout |
ID | mhhnhmglejcmjmgmbhfngnijkkeflmek |
공식 URL | https://chromewebstore.google.com/detail/saturation-scout/mhhnhmglejcmjmgmbhfngnijkkeflmek |
설명 | Determines saturation level of the product sold on Aliexpress |
파일 크기 | 242 KB |
설치 횟수 | 7,444 |
현재 버전 | 1.07 |
최근 업데이트 | 2024-03-03 |
출시 날짜 | 2021-08-04 |
평점 | 4.13/5 총 16 개의 평점 |
개발자 | https://saturationscout.com |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://www.saturationscout.com/ |
도움말 페이지 URL | https://www.saturationscout.com/contact |
개인정보 보호 정책 페이지 URL | https://www.saturationscout.com/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Saturation Scout", "description": "Determines saturation level of the product sold on Aliexpress", "version": "1.07", "manifest_version": 3, "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "*:\/\/www.saturationscout.com\/_functions\/*" ], "action": { "default_popup": "popup.html", "default_icon": "archive\/icon-128.png" }, "options_ui": { "page": "options.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.aliexpress.com\/item\/*", "*:\/\/*.aliexpress.us\/item\/*" ], "js": [ "jquery-3.3.1.js", "content-script.js" ] } ], "icons": { "16": "archive\/icon-16.png", "48": "archive\/icon-48.png", "128": "archive\/icon-128.png", "19": "archive\/icon-19.png", "32": "archive\/icon-32.png" } } |