Saturation Doctor
Saturation Doctor
Co to jest Saturation Doctor?
Saturation Doctor to rozszerzenie Chrome opracowane przez SaturationDoctor, a jego główną funkcją jest „Saturation Doctor”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Saturation Doctor
Pobierz pliki rozszerzeń Saturation Doctor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Saturation Doctor |
ID | libhomjlepkocjgjpgolfiahecffmlad |
Oficjalny URL | https://chromewebstore.google.com/detail/saturation-doctor/libhomjlepkocjgjpgolfiahecffmlad |
Opis | Saturation Doctor |
Rozmiar pliku | 376 KB |
Liczba instalacji | 116 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-12-20 |
Data Publikacji | 2020-12-20 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | SaturationDoctor |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.saturatiod.com |
Adres URL Strony Pomocy | https://www.saturatiod.com |
Obsługiwane Języki | 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" } } |