Saturation Doctor
Saturation Doctor
Τι είναι το Saturation Doctor;
Το Saturation Doctor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον SaturationDoctor, και η κύρια λειτουργία του είναι "Saturation Doctor".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Saturation Doctor
Λήψη αρχείων επέκτασης Saturation Doctor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } } |