Screen Capturing

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

什么是Screen Capturing?

Screen Capturing是由https://appinux.com开发的Chrome扩展程序,该扩展的主要功能是“This WebRTC screen capturing extension can be used within any WebRTC library/application!”。

扩展截图

screenshot

下载Screen Capturing扩展crx文件

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

扩展使用说明

                        Developer tool for screen sharing by Appinux A/S                    

扩展基本信息

名称 Screen Capturing Screen Capturing
ID hccmdbhopgjapkajcmdegkpplnahngnl
官方URL https://chromewebstore.google.com/detail/screen-capturing/hccmdbhopgjapkajcmdegkpplnahngnl
简介 This WebRTC screen capturing extension can be used within any WebRTC library/application!
文件大小 5.33 KB
安装次数 87
当前版本 3.5
更新时间 2019-04-26
上架时间 2019-04-26
开发者 https://appinux.com
付费类型 free
扩展官网 https://appinux.com
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capturing",
    "author": "Muaz Khan",
    "version": "3.5",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This WebRTC screen capturing extension can be used within any WebRTC library\/application!",
    "homepage_url": "http:\/\/www.appinux.com\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}