WebRTC video effect

This extension applies video effects on the camera in WebRTC applications

WebRTC video effectとは何ですか?

WebRTC video effectはticapixによって開発されたChromeの拡張機能で、その主な機能は「This extension applies video effects on the camera in WebRTC applications」です。

拡張機能のスクリーンショット

screenshot

WebRTC video effect拡張機能のCRXファイルをダウンロード

WebRTC video effect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension install a javascript hook on the navigator.getUserMedia function.

If the web page calls the hook, video effects are loaded and applied on the video stream coming from the camera.

Video effects are based on WebGL with http://threejs.org/

You can try on https://appear.in/, https://simpl.info/getusermedia/, ...                    

拡張機能の基本情報

名前 WebRTC video effect WebRTC video effect
ID oeilcibfeihdekhhlopefndagpponjpo
公式URL https://chromewebstore.google.com/detail/webrtc-video-effect/oeilcibfeihdekhhlopefndagpponjpo
説明 This extension applies video effects on the camera in WebRTC applications
ファイルサイズ 158 KB
インストール数 153
現在のバージョン 1.1
最終更新日 2016-05-18
公開日 2016-05-17
評価 2.33/5 合計 3 レビュー
開発者 ticapix
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/ticapix/chrome_ext-gum_videofx
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebRTC video effect",
    "short_name": "webfx",
    "version": "1.1",
    "description": "This extension applies video effects on the camera in WebRTC applications",
    "page_action": {
        "default_icon": "res\/icon_off.png",
        "default_popup": "html\/popup.html",
        "default_title": "WebRTC Video effect"
    },
    "background": {
        "scripts": [
            "js\/util.js",
            "js\/util_inject.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "js\/util.js",
                "js\/util_inject.js",
                "js\/message_proxies.js",
                "js\/webpage_application.js",
                "js\/contentscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "lib\/three.min.js"
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}