VTEX IO Shortcuts

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

VTEX IO Shortcutsคืออะไร?

VTEX IO Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Emiliano Gioia และคุณลักษณะหลักของมันคือ "Set of shortcuts so you can work faster on VTEX IO stores"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VTEX IO Shortcuts

ดาวน์โหลดไฟล์ส่วนขยาย VTEX IO Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ VTEX IO Shortcuts VTEX IO Shortcuts
ID hmpjjdpnijjloflnedjeapccfcpijgdj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vtex-io-shortcuts/hmpjjdpnijjloflnedjeapccfcpijgdj
คำอธิบาย Set of shortcuts so you can work faster on VTEX IO stores
ขนาดไฟล์ 234 KB
จำนวนการติดตั้ง 731
เวอร์ชันปัจจุบัน 4.0
อัปเดตครั้งล่าสุด 2022-04-05
วันที่เผยแพร่ 2022-01-20
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Emiliano Gioia
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/emilianog94/vtex-io-shortcuts
ภาษาที่รองรับ 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"
            ]
        }
    ]
}