Global Amazon Search

Look for products in Amazon worldwide

Τι είναι το Global Amazon Search;

Το Global Amazon Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ecomm-extensions, και η κύρια λειτουργία του είναι "Look for products in Amazon worldwide".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Global Amazon Search

Λήψη αρχείων επέκτασης Global Amazon Search σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Have you ever wondered what is the price of the product in the Amazon YOU search in other Amazons?
Either way a product being sold in one Amazon may be appear in other Amazons around the world with different prices!

WHAT? With this extension you can compare the product price in all amazon websites around the world! 
You can see the it in your local currency as well!
HOW? go to amazon, pick a product open the extension pop-up and start comparing! 
WHY? because you can! other sellers, other prices, other currencies and sales!
 
This extension was built to help consumers in Amazon around the world. 
Please let us know if you have any recommendation improving this extension as well as any issue you encounter.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Global Amazon Search Global Amazon Search
ID eeemofdoepkcmdencbmaogfnbnndpepf
Επίσημο URL https://chrome.google.com/webstore/detail/global-amazon-search/eeemofdoepkcmdencbmaogfnbnndpepf
Περιγραφή Look for products in Amazon worldwide
Μέγεθος Αρχείου 2.84 MB
Αριθμός Εγκαταστάσεων 116
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-01-21
Ημερομηνία Δημοσίευσης 2021-01-21
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής ecomm-extensions
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Global Amazon Search",
    "version": "1.0",
    "description": "Look for products in Amazon worldwide",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "page_action": {
        "default_icon": "compare-16.png",
        "default_title": "Compare with other Amazons!",
        "default_popup": "index.html"
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "compare-16.png",
        "64": "compare64.png",
        "128": "compare128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.amazon.com\/*",
                "*:\/\/www.amazon.co.uk\/*",
                "*:\/\/www.amazon.ca\/*",
                "*:\/\/www.amazon.fr\/*",
                "*:\/\/www.amazon.cn\/*",
                "*:\/\/www.amazon.nl\/*",
                "*:\/\/www.amazon.de\/*",
                "*:\/\/www.amazon.es\/*",
                "*:\/\/www.amazon.co.in\/*",
                "*:\/\/www.amazon.co.jp\/*",
                "*:\/\/www.amazon.co.ms\/*",
                "*:\/\/www.amazon.ru\/*",
                "*:\/\/www.amazon.com.au\/*",
                "*:\/\/www.amazon.com.br\/*",
                "*:\/\/www.amazon.it\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.jsdelivr.net https:\/\/browser.sentry-cdn.com; object-src 'self'",
    "web_accessible_resources": [
        "main.js",
        "errorHandler.js"
    ],
    "manifest_version": 2
}