QScreens Capture

QScreens Capture

Screen capture your current page and show on a QScreen of your choice!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "QScreens Capture",
  "version": "1.1.0.0",
  "manifest_version": 2,
  "options_page": "options.html",
  "description": "Screen capture your current page and show on a QScreen of your choice!",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "notifications",
    "storage",
    "contextMenus"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}