VIA Screen Share

VIA Screen Share

Share your desktop or application using VIA Screen Share [Minimum VIA Version 2.5]

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VIA Screen Share",
  "description": "Share your desktop or application using VIA Screen Share [Minimum VIA Version 2.5] ",
  "version": "1.0.35",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "VIA Screen Share",
    "default_popup": "popup.html"
  },
  "externally_connectable": {
    "matches": [
      "https://dev.wowvision.in/*",
      "https://cb.wowvision.com/*",
      "https://via.kramerav.com/*"
    ]
  },
  "icons": {
    "16": "images/icon.png",
    "128": "images/icon.png"
  },
  "permissions": [
    "desktopCapture",
    "tabs",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://dev.wowvision.in/*",
        "https://cb.wowvision.com/*",
        "https://via.kramerav.com/*"
      ],
      "js": [
        "javascripts/contentScript.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "jquery.js",
      "javascripts/index_db_functions.js",
      "javascripts/background.js"
    ]
  },
  "web_accessible_resources": [
    "images/icon.png",
    "extention_message_youtube.js"
  ]
}