VTEX IO Shortcuts

Set of shortcuts so you can work faster on VTEX IO stores

What is VTEX IO Shortcuts?

VTEX IO Shortcuts is a Chrome extension developed by Emiliano Gioia, and its main feature is "Set of shortcuts so you can work faster on VTEX IO stores".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download VTEX IO Shortcuts Extension CRX File

Download VTEX IO Shortcuts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        VTEX IO Shortcuts es una extensión gratuita de código abierto que te genera accesos directos para ahorrar tiempo trabajando en entornos de VTEX IO.

Tras instalarla vas a encontrar una serie de widgets en la zona inferior izquierda en todas las páginas de un entorno de VTEX IO.


FUNCIONALIDADES

Globales (en todas las páginas)
- Widget con acceso a Site Editor desde la página que estás viendo

Fichas de Producto
- Widget con acceso a datos del producto en una barra lateral
- Widget con acceso a datos de variantes de SKU con links de acceso para administrador
- Widget con acceso de administrador para editar un producto

Checkout
- Widget con acceso a objeto orderForm en formato JSON
- Widget con acceso de administrador para editar el checkout (Checkout UI Custom)


Esta es una extensión gratuita de código abierto, podés ver el repositorio público en https://github.com/emilianog94/vtex-io-shortcuts                    

Extension Basic Information

Name VTEX IO Shortcuts VTEX IO Shortcuts
ID hmpjjdpnijjloflnedjeapccfcpijgdj
Official URL https://chromewebstore.google.com/detail/vtex-io-shortcuts/hmpjjdpnijjloflnedjeapccfcpijgdj
Description Set of shortcuts so you can work faster on VTEX IO stores
File Size 234 KB
Installation Count 731
Current Version 4.0
Last Updated 2022-04-05
Publish Date 2022-01-20
Rating 5.00/5 Total 2 Ratings
Developer Emiliano Gioia
Email [email protected]
Payment Type free
Extension Website https://github.com/emilianog94/vtex-io-shortcuts
Supported Languages es-419
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VTEX IO Shortcuts",
    "description": "Set of shortcuts so you can work faster on VTEX IO stores",
    "version": "4.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.png",
                "fonts\/*.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.myvtex.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.myvtex.com\/admin\/*",
                "https:\/\/*.myvtex.com\/_v*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/icons.js",
                "js\/helpers.js",
                "js\/observer.js"
            ],
            "css": [
                "css\/styles.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.myvtex.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.myvtex.com\/checkout\/*",
                "https:\/\/*.myvtex.com\/admin\/*",
                "https:\/\/*.myvtex.com\/_v*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/page.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.myvtex.com\/*\/p*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/product.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.myvtex.com\/checkout\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/jquery-3.6.0.min.js",
                "js\/jquery.json-viewer.js",
                "js\/checkout.js"
            ],
            "css": [
                "css\/jquery.json-viewer.css"
            ]
        }
    ]
}