Hide Elevar

Hide Elevar

A simple extension to hide the additional details fields which the Elevar app adds to orders in the Shopify admin.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hide Elevar",
  "version": "1.2",
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "description": "A simple extension to hide the additional details fields which the Elevar app adds to orders in the Shopify admin.",
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://admin.shopify.com/*",
        "https://admin.shopify.com/store/*/orders/*",
        "https://*/admin/orders",
        "https://*/admin/orders/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}