投屏助手

办公投屏助手,用于捕获本机桌面视频并投射到大屏设备
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "投屏助手",
  "description": "办公投屏助手,用于捕获本机桌面视频并投射到大屏设备",
  "version": "1.0.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "icons": {},
  "permissions": [
    "desktopCapture",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://localhost:3232/*",
        "https://tptest.whaley.cn/*",
        "https://tp.whaley.cn/*",
        "https://screen.nbdeli.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3232/*",
      "https://tptest.whaley.cn/*",
      "https://tp.whaley.cn/*",
      "https://screen.nbdeli.com/*"
    ]
  },
  "browser_action": {
    "default_icon": "images/desktopCapture22.png",
    "default_title": "投屏助手"
  }
}