GRAB AR

GRAB AR

GRAB AR QR Code Generator

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GRAB AR",
  "version": "4.0.0.1",
  "manifest_version": 2,
  "description": "GRAB AR QR Code Generator",
  "homepage_url": "https://grabar.app",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/jquery/jquery.js",
        "qrcode/jquery.qrcode.min.js",
        "qrcode/qrcode.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}