MyRegistry Shipping Address Assist

Save time and effort by copying the shipping address before you begin checkout

Cos'è MyRegistry Shipping Address Assist?

MyRegistry Shipping Address Assist è un'estensione di Chrome sviluppata da https://www.myregistry.com, e la sua funzione principale è "Save time and effort by copying the shipping address before you begin checkout".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione MyRegistry Shipping Address Assist

Scarica i file di estensione MyRegistry Shipping Address Assist in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Shopping for a gift on MyRegistry.com? Save time during checkout with the MyRegistry Shipping Address Assist extension.

Before you click BUY, easily grab your recipient's name and address. That information will follow you through the merchant checkout process, and when you’re ready to complete your purchase, the shipping details will be right there with you, ready to go. No more toggling back and forth to gather everything you need!

MyRegistry.com – All Stores, One Registry®                    

Informazioni di Base sull'Estensione

Nome MyRegistry Shipping Address Assist MyRegistry Shipping Address Assist
ID ndandbjhlckddblkhognpbfbhjokbplp
URL Ufficiale https://chromewebstore.google.com/detail/myregistry-shipping-addre/ndandbjhlckddblkhognpbfbhjokbplp
Descrizione Save time and effort by copying the shipping address before you begin checkout
Dimensione del File 128 KB
Conteggio Installazioni 41,714
Versione Corrente 3.0.0
Ultimo Aggiornamento 2022-09-07
Data di Pubblicazione 2020-10-19
Valutazione 1.80/5 Totale 5 Valutazioni
Sviluppatore https://www.myregistry.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://customercare.myregistry.com/en/support/home
URL della Pagina della Politica sulla Privacy https://www.myregistry.com/Info/Privacy.aspx
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MyRegistry Shipping Address Assist",
    "description": "Save time and effort by copying the shipping address before you begin checkout",
    "version": "3.0.0",
    "author": "MyRegistry.com",
    "background": {
        "service_worker": "lib\/config.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "data\/scripts\/tools.js",
                "data\/scripts\/content.js",
                "data\/scripts\/messaging.js",
                "data\/widget\/mr_widget.js"
            ],
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/myregistry.com\/*",
                "*:\/\/*.myregistry.com\/*",
                "*:\/\/*.myregistrystaging.com\/*",
                "*:\/\/*.mrtesting.com\/*",
                "*:\/\/*.mrnico.com\/*",
                "*:\/\/*.mr100.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "data\/scripts\/tools.js",
                "data\/scripts\/content.myregistry.js",
                "data\/scripts\/messaging.js",
                "data\/widget\/mr_widget.js",
                "data\/scripts\/getwebsitesettings.js"
            ],
            "matches": [
                "*:\/\/myregistry.com\/*",
                "*:\/\/*.myregistry.com\/*",
                "*:\/\/*.myregistrystaging.com\/*",
                "*:\/\/*.mrtesting.com\/*",
                "*:\/\/*.mrnico.com\/*",
                "*:\/\/*.mr100.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_icon": "data\/icons\/icon-32.png",
        "default_title": "MyRegistry Shipping address"
    },
    "icons": {
        "32": "data\/icons\/icon-32.png",
        "64": "data\/icons\/icon-64.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.myregistry.com\/*",
        "*:\/\/*.mrtesting.com\/*",
        "*:\/\/*.mr100.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "data\/icons\/*",
                "data\/fonts\/*",
                "data\/widget\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "manifest_version": 3
}