Live video recorder

Record live stream!

Live video recorder란 무엇입니까?

Live video recorder은(는) https://yoyo.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record live stream!"입니다.

확장 프로그램 스크린샷

screenshot

Live video recorder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Record any HTML5 video or livestream by right clicking on it.

V0.6
✨ Displays a red icon when recording
✨ Now supports multiple recordings at the same time

🛠️ Only the audio is recorded?
✔️ If you are using Windows, you might need to install VLC(https://www.videolan.org/) to play recorded videos.                    

확장 프로그램 기본 정보

이름 Live video recorder Live video recorder
ID nieboggmgpnmaiedgpcackjnpjakgfaf
공식 URL https://chromewebstore.google.com/detail/live-video-recorder/nieboggmgpnmaiedgpcackjnpjakgfaf
설명 Record live stream!
파일 크기 18.39 KB
설치 횟수 7,505
현재 버전 0.7
최근 업데이트 2021-04-29
출시 날짜 2019-08-05
평점 2.60/5 총 15 개의 평점
개발자 https://yoyo.dev
이메일 [email protected]
결제 유형 free
지원되는 언어 en,fr,es,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.7",
    "manifest_version": 2,
    "description": "__MSG_appDesc__",
    "author": "Yohan Galerneau",
    "default_locale": "en",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "contextMenus",
        "downloads"
    ],
    "background": {
        "scripts": [
            "script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}