MTG Remote

MTG Remote

Multiplayer life counter and card lookup tool for playing Magic: The Gathering over Google Hangouts/Meet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MTG Remote",
  "version": "0.9.8",
  "description": "Multiplayer life counter and card lookup tool for playing Magic: The Gathering over Google Hangouts/Meet.",
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
  "permissions": [
    "activeTab",
    "storage",
    "management"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "views/options.html",
  "content_scripts": [
    {
      "matches": [
        "https://hangouts.google.com/call/*",
        "https://meet.google.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/jquery-ui.min.js",
        "js/fancy-websocket.js",
        "js/handlebars.min.js",
        "js/content.js",
        "js/popper.min.js",
        "js/bootstrap.min.js"
      ],
      "css": [
        "css/style.css",
        "css/jquery-ui.css",
        "css/bootstrap.min.css",
        "css/mana.css",
        "css/set_icons.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "views/inject.html",
    "js/inject.js",
    "fonts/*",
    "images/header_texture.png",
    "images/become_a_patron_button.png",
    "images/paypal_donate_button.png",
    "templates/*"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "64": "images/icon64.png"
    },
    "default_title": "MTG Remote"
  },
  "manifest_version": 2
}