Zeeromed Multi-monitor

Zeeromed Multi-monitor

Zeeromed client-side management

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Zeeromed Multi-monitor",
  "short_name": "Zeeromed",
  "description": "Zeeromed client-side management",
  "version": "1.4.1",
  "manifest_version": 2,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "permissions": [
    "system.display",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "background_main.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "browser_action.html"
  },
  "commands": {
    "R1": {
      "suggested_key": {
        "default": "Alt+1"
      },
      "description": "r1"
    },
    "R2": {
      "suggested_key": {
        "default": "Alt+2"
      },
      "description": "r2"
    },
    "M": {
      "suggested_key": {
        "default": "Alt+M"
      },
      "description": "Monitors setup"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js",
        "jquery.min.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "img/icon.png"
  }
}