AliScout

Find the Amazon product on AliExpress

Qu'est-ce que AliScout ?

AliScout est une extension Chrome développée par Tim Mak, et sa fonction principale est "Find the Amazon product on AliExpress".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension AliScout

Téléchargez les fichiers d'extension AliScout au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom AliScout AliScout
ID jdkfkjlaacibhpcjjndhpgnfjanpnnbg
URL Officiel https://chrome.google.com/webstore/detail/aliscout/jdkfkjlaacibhpcjjndhpgnfjanpnnbg
Description Find the Amazon product on AliExpress
Taille du Fichier 78.8 KB
Nombre d'Installations 744
Version Actuelle 0.9
Dernière Mise à Jour 2021-02-16
Date de Publication 2021-02-16
Évaluation 5.00/5 Total 2 Évaluations
Développeur Tim Mak
Email [email protected]
Langues Prises en Charge 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"
        }
    ]
}