AliScout

Find the Amazon product on AliExpress

什麼是AliScout?

AliScout是由Tim Mak開發的Chrome擴展程式,該擴展的主要功能是“Find the Amazon product on AliExpress”。

擴展截圖

screenshot
screenshot

下載AliScout擴展crx文件

下載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
官方網址 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"
        }
    ]
}