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"
    ]
}