Does Amazon Ship to ...?

Button to check if Amazon items could be shipped to your country. The button appears on Amazon product page only.

什么是Does Amazon Ship to ...??

Does Amazon Ship to ...?是由aliaksandr开发的Chrome扩展程序,该扩展的主要功能是“Button to check if Amazon items could be shipped to your country. The button appears on Amazon product page only.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Does Amazon Ship to ...?扩展crx文件

下载Does Amazon Ship to ...?扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Press the button "Check if the item could be shipped to your country" and see results table with:
- Seller name and link to the related product detail page
- Price of the product
- Seller's shipping rate of the product

Click on the suitable link in the table to open the related product detail page and make an order.

Works on Amazon sites: .com, .co.uk, .de, .fr, .it, .es, .ca, .com.mx, .com.au

There are cases when it is not possible to find a suitable option on the Amazon site. Use the button "Find Similar ..." to open related Google search results of eBay, Aliexpress or Gearbest products.

The same "Find Similar..." button appears on eBay, Aliexpress and Gearbest product pages.                    

扩展基本信息

名称 Does Amazon Ship to ...? Does Amazon Ship to ...?
ID gpnamfpkffldfnlkofbbebcndfdkclpc
官方URL https://chromewebstore.google.com/detail/does-amazon-ship-to/gpnamfpkffldfnlkofbbebcndfdkclpc
简介 Button to check if Amazon items could be shipped to your country. The button appears on Amazon product page only.
文件大小 303 KB
安装次数 10,000
当前版本 6.1.7
更新时间 2022-09-02
上架时间 2020-05-21
评分 3.93/5 共271次评分
开发者 aliaksandr
电子邮箱 [email protected]
付费类型 free
扩展官网 https://resourcefulman.net/
隐私政策页面URL https://ad.resourcefulman.net/Privacy-Policy.txt
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Does Amazon Ship to ...?",
    "version": "6.1.7",
    "description": "Button to check if Amazon items could be shipped to your country. The button appears on Amazon product page only.",
    "icons": {
        "48": "assets\/icon.png",
        "128": "assets\/icon_128.png"
    },
    "optional_permissions": [
        "*:\/\/*.gearbest.com\/*",
        "*:\/\/*.ebay.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.it\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.com.mx\/*",
                "*:\/\/*.amazon.com.au\/*",
                "*:\/\/*.aliexpress.com\/*",
                "*:\/\/*.aliexpress.ru\/*"
            ],
            "js": [
                "assets\/scripts.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "app.js",
        "styles.bundle.css",
        "assets\/error.icon.png",
        "assets\/good.icon.png",
        "assets\/jquery-3.2.1.min.js",
        "assets\/loading.gif"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "assets\/background.js"
        ]
    }
}