AliScout

Find the Amazon product on AliExpress

Was ist AliScout?

AliScout ist eine Chrome-Erweiterung, die von Tim Mak entwickelt wurde, und ihr Hauptmerkmal ist "Find the Amazon product on AliExpress".

Erweiterungsscreenshots

screenshot
screenshot

AliScout-Erweiterungs-CRX-Datei herunterladen

Laden Sie AliScout-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AliScout AliScout
ID jdkfkjlaacibhpcjjndhpgnfjanpnnbg
Offizielle URL https://chrome.google.com/webstore/detail/aliscout/jdkfkjlaacibhpcjjndhpgnfjanpnnbg
Beschreibung Find the Amazon product on AliExpress
Dateigröße 78.8 KB
Installationsanzahl 744
Aktuelle Version 0.9
Letztes Update 2021-02-16
Veröffentlichungsdatum 2021-02-16
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Tim Mak
E-Mail [email protected]
Unterstützte Sprachen 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"
        }
    ]
}