Saturation Doctor
Saturation Doctor
Was ist Saturation Doctor?
Saturation Doctor ist eine Chrome-Erweiterung, die von SaturationDoctor entwickelt wurde, und ihr Hauptmerkmal ist "Saturation Doctor".
Erweiterungsscreenshots
Saturation Doctor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Saturation Doctor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Saturation Doctor |
ID | libhomjlepkocjgjpgolfiahecffmlad |
Offizielle URL | https://chromewebstore.google.com/detail/saturation-doctor/libhomjlepkocjgjpgolfiahecffmlad |
Beschreibung | Saturation Doctor |
Dateigröße | 376 KB |
Installationsanzahl | 116 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-12-20 |
Veröffentlichungsdatum | 2020-12-20 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | SaturationDoctor |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.saturatiod.com |
Hilfeseite URL | https://www.saturatiod.com |
Unterstützte Sprachen | 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" } } |