Desktop Screen Capture

This WebRTC screen capturing extension can be used within any WebRTC library/application!

什么是Desktop Screen Capture?

Desktop Screen Capture是由Kesavan开发的Chrome扩展程序,该扩展的主要功能是“This WebRTC screen capturing extension can be used within any WebRTC library/application!”。

下载Desktop Screen Capture扩展crx文件

下载Desktop Screen Capture扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This plugin will capture desktop screen and share with application used                    

扩展基本信息

名称 Desktop Screen Capture Desktop Screen Capture
ID incidfiopdpenddingekgkhmdnkackke
官方URL https://chromewebstore.google.com/detail/desktop-screen-capture/incidfiopdpenddingekgkhmdnkackke
简介 This WebRTC screen capturing extension can be used within any WebRTC library/application!
文件大小 23.53 KB
安装次数 30
当前版本 1.3
更新时间 2015-09-06
上架时间 2015-09-06
开发者 Kesavan
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Desktop Screen Capture",
    "author": "Kesavan Mannupillai",
    "version": "1.3",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This WebRTC screen capturing extension can be used within any WebRTC library\/application!",
    "homepage_url": "https:\/\/52.25.232.34\/getScreenId\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "1": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}