Cast with MkChromecast

Casts videos in pages like youtube via MkChromecast

Cast with MkChromecast란 무엇입니까?

Cast with MkChromecast은(는) Thann에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Casts videos in pages like youtube via MkChromecast"입니다.

확장 프로그램 스크린샷

screenshot

Cast with MkChromecast 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Casts videos in pages like youtube via MkChromecast
Right-click links and pages to cast videos. 
Works on nearly every website thanks to youtube-dl.

Powered by play-with-mpv which requires several dependencies, see website for more info.

1. Install this chrome extension
2. Install Python 2 or 3 and pip
3. Install MkChromecast: `pip install git+git://github.com/muammar/mkchromecast --user`
4. Install server: `pip install git+git://github.com/thann/play-with-mpv --user`
5. Run server: `play-with-mpv` or use linux shortcut
6. (optional) Autostart on linux: `cp ~/.local/share/applications/thann.play-with-mpv.desktop ~/.config/autostart/`                    

확장 프로그램 기본 정보

이름 Cast with MkChromecast Cast with MkChromecast
ID edeepcccaejnnodlpmcoackkdgaijakg
공식 URL https://chromewebstore.google.com/detail/cast-with-mkchromecast/edeepcccaejnnodlpmcoackkdgaijakg
설명 Casts videos in pages like youtube via MkChromecast
파일 크기 5.46 KB
설치 횟수 80,000
현재 버전 0.0.1
최근 업데이트 2018-03-02
출시 날짜 2018-03-01
평점 3.19/5 총 67 개의 평점
개발자 Thann
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Thann/play-with-mpv
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cast with MkChromecast",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Casts videos in pages like youtube via MkChromecast",
    "homepage_url": "https:\/\/github.com\/thann\/play-with-mpv",
    "icons": {
        "128": "mkchromecast-logo.png"
    },
    "page_action": {
        "default_icon": "mkchromecast-logo.png",
        "default_title": "Cast with MkChromecast"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "http:\/\/localhost\/"
    ]
}