AliScout

Find the Amazon product on AliExpress

Что такое AliScout?

AliScout - это расширение Chrome, разработанное Tim Mak, и его основная функция - "Find the Amazon product on AliExpress".

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

screenshot
screenshot

Скачать файл CRX расширения AliScout

Скачайте файлы расширений AliScout в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Many products on Amazon are available on AliExpress for a much lower price. With this extension you can quickly find them.

How to use: Simply navigate to the page of any product on Amazon, click the extension icon and the results will appear in a popup window.

The quality of the search results highly depends on the type of product. Works best for products sourced in China or sold by Chinese merchants. 

Current version is still in beta test, so please contact the developer if you encounter any issues.                    

Основная информация о расширении

Название AliScout AliScout
ID jdkfkjlaacibhpcjjndhpgnfjanpnnbg
Официальный URL https://chrome.google.com/webstore/detail/aliscout/jdkfkjlaacibhpcjjndhpgnfjanpnnbg
Описание Find the Amazon product on AliExpress
Размер файла 78.8 KB
Количество установок 744
Текущая Версия 0.9
Последнее Обновление 2021-02-16
Дата публикации 2021-02-16
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Tim Mak
Электронная почта [email protected]
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AliScout",
    "manifest_version": 2,
    "version": "0.9",
    "description": "Find the Amazon product on AliExpress",
    "defaul_locale": "en",
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "permissions": [
        "https:\/\/timmak.pythonanywhere.com\/"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ]
}