Saturation Doctor

Saturation Doctor

Что такое Saturation Doctor?

Saturation Doctor - это расширение Chrome, разработанное SaturationDoctor, и его основная функция - "Saturation Doctor".

Снимки экрана расширения

screenshot

Скачать файл 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 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"
    }
}