AliScout

Find the Amazon product on AliExpress

Cos'è AliScout?

AliScout è un'estensione di Chrome sviluppata da Tim Mak, e la sua funzione principale è "Find the Amazon product on AliExpress".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione AliScout

Scarica i file di estensione AliScout in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AliScout AliScout
ID jdkfkjlaacibhpcjjndhpgnfjanpnnbg
URL Ufficiale https://chrome.google.com/webstore/detail/aliscout/jdkfkjlaacibhpcjjndhpgnfjanpnnbg
Descrizione Find the Amazon product on AliExpress
Dimensione del File 78.8 KB
Conteggio Installazioni 744
Versione Corrente 0.9
Ultimo Aggiornamento 2021-02-16
Data di Pubblicazione 2021-02-16
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Tim Mak
Email [email protected]
Lingue Supportate 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"
        }
    ]
}