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ファイルをダウンロード

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

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}