GV - Shopify Gift Cards

GV - Shopify Gift Cards

GV Chrome extension: Easily create and sell gift cards online. Simplify your gifting experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GV - Shopify Gift Cards",
  "description": "GV Chrome extension: Easily create and sell gift cards online. Simplify your gifting experience",
  "version": "2.0",
  "action": {
    "default_popup": "index.html",
    "default_title": "Shopify Gift Cards",
    "default_icon": "logo16.png"
  },
  "host_permissions": [
    "*://*.shopify.com/",
    "*://*.aliexpress.ru/",
    "*://*.aliexpress.com/"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.myshopify.com/*",
      "https://*.shopify.com/*",
      "https://*.govalos.com/*"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "static/js/content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequestFeedback"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "icons": {
    "16": "logo16.png",
    "32": "logo32.png",
    "48": "logo48.png",
    "64": "logo64.png",
    "128": "logo128.png"
  }
}