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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Does Amazon Ship to ...? एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        ]
    }
}