cast player

Plays local videos on Chrome/Chromecast (with subtitles)

cast player란 무엇입니까?

cast player은(는) krakesh14638에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Plays local videos on Chrome/Chromecast (with subtitles)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

cast player 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Now you can play local videos (movies on your desktop) on Chromecast (or Chrome) and control (play, pause, etc)

All you have to do is drop some directory with .MP4 files (supports subdirectories) or drop the .MP4 file into your Chrome browser

ALLOW EXTENSION:
Access chrome://extensions/ and CHECK "Allow access to file URLs" from "cast player" extension.

SUBTITLES support! You just need to have an .SRT file with the same name as the movie and in the same directory or choose your subtitles in the video player.
Share us on Facebook (with Facebook post)

Release notes:
0.8.1
fix bug css

0.8.0
fix auto load subtitles
update player
supports picture-in-picture mode (not supports subtitles)                    

확장 프로그램 기본 정보

이름 cast player cast player
ID dionggdmdobjjolppiiejleechniphok
공식 URL https://chromewebstore.google.com/detail/cast-player/dionggdmdobjjolppiiejleechniphok
설명 Plays local videos on Chrome/Chromecast (with subtitles)
파일 크기 203 KB
설치 횟수 132,756
현재 버전 0.8.1
최근 업데이트 2024-02-26
출시 날짜 2019-06-28
평점 2.87/5 총 399 개의 평점
개발자 krakesh14638
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "cast player",
    "description": "Plays local videos on Chrome\/Chromecast (with subtitles)",
    "version": "0.8.1",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "96": "icon\/96.png",
        "128": "icon\/128.png"
    },
    "action": {
        "default_title": "cast player",
        "default_icon": "icon\/48.png"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "tabs",
        "storage",
        "declarativeNetRequest"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content-scripts\/content.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content-scripts\/content.js"
            ]
        }
    ]
}