Chrome_MultiMonitor

Chrome_MultiMonitor

This extension will help you to position a tab on another monitor from a web page. Actually chrome will not let you to do that from…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome_MultiMonitor",
  "version": "1.4.6",
  "minimum_chrome_version": "23",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "system.display"
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "favicon_16.ico"
  ]
}