VTEX IO Shortcuts

VTEX IO Shortcuts

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ]
    }
  ],
  "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"
      ]
    }
  ]
}