Globbing

Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…

¿Qué es Globbing?

Globbing es una extensión de Chrome desarrollada por system, y su función principal es "Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Globbing

Descarga archivos de extensión Globbing en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is required to log in to your Globbing account to activate the tool.

Addresses added:

- Amazon
- B&H Photo Video
- ASOS
- eBay                    

Información Básica de la Extensión

Nombre Globbing Globbing
ID dcifnjbhgnhliboepcenbbollbmdfjfp
URL Oficial https://chromewebstore.google.com/detail/globbing/dcifnjbhgnhliboepcenbbollbmdfjfp
Descripción Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…
Tamaño del Archivo 175 KB
Cantidad de Instalaciones 180
Versión Actual 3.0.2
Última Actualización 2023-06-05
Fecha de Publicación 2023-06-05
Desarrollador system
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Globbing",
    "version": "3.0.2",
    "action": {
        "default_icon": {
            "16": "images\/icon.png",
            "24": "images\/icon.png",
            "32": "images\/icon.png"
        },
        "default_popup": "popup.html",
        "default_title": "Globbing"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*"
            ],
            "resources": [
                "images\/cross.svg",
                "images\/image2.png",
                "images\/check.png",
                "images\/logo.svg"
            ]
        },
        {
            "matches": [
                "https:\/\/*.ebay.com\/*"
            ],
            "resources": [
                "images\/cross.svg",
                "images\/image2.png",
                "images\/check.png",
                "images\/logo.svg"
            ]
        },
        {
            "matches": [
                "https:\/\/*.asos.com\/*"
            ],
            "resources": [
                "images\/cross.svg",
                "images\/image2.png",
                "images\/check.png",
                "images\/logo.svg"
            ]
        },
        {
            "matches": [
                "https:\/\/*.bhphotovideo.com\/*"
            ],
            "resources": [
                "images\/cross.svg",
                "images\/image2.png",
                "images\/check.png",
                "images\/logo.svg"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.globbing.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*"
            ],
            "js": [
                "js\/stores\/amazon.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.ebay.com\/*"
            ],
            "js": [
                "js\/stores\/ebay.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.asos.com\/*"
            ],
            "js": [
                "js\/stores\/asos.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.bhphotovideo.com\/*"
            ],
            "js": [
                "js\/stores\/bh.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "scripting",
        "storage"
    ]
}