Igallery Screen Capturing

Igallery Screen Capturing

Capture full-screen or specific application's screen on any HTTPs domain!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Igallery Screen Capturing",
  "author": "Enrique Thumar",
  "version": "0.0.3",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Capture full-screen or specific application's screen on any HTTPs domain!",
  "homepage_url": "https://www.igallery.tv/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "http://localhost/*",
        "https://igallery.tv/*",
        "http://igallery.tv/*",
        "https://www.igallery.tv/*",
        "http://www.igallery.tv/*"
      ]
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}