IT Warehouse Screen Sharing

IT Warehouse Screen Sharing

This Chrome extension is developed primary for https://secure.itw.de/. It doesn't do anything except capture content of your screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IT Warehouse Screen Sharing",
  "externally_connectable": {
    "matches": [
      "https://itw030.internal.itw/*",
      "https://secure.itw.de/*",
      "https://www.smartcloudservices.de/*"
    ]
  },
  "author": "IT Warehouse AG",
  "version": "1.0.8",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This Chrome extension is developed primary for https://secure.itw.de/. It doesn't do anything except capture content of your screen.",
  "homepage_url": "http://www.itw.de/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js",
        "jquery-1.9.1.min.js",
        "jquery.contextmenu.js"
      ],
      "css": [
        "jquery.contextmenu.css"
      ],
      "all_frames": true,
      "matches": [
        "https://itw030.internal.itw/*",
        "https://secure.itw.de/*",
        "https://www.smartcloudservices.de/*"
      ]
    }
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "browser_action": {
    "default_icon": "logo48.png",
    "default_title": "Page Marker"
  },
  "permissions": [
    "desktopCapture",
    "activeTab",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "icon.png",
    "logo16.png",
    "check.js"
  ]
}