cast player

Plays local videos on Chrome/Chromecast (with subtitles)

cast player là gì?

cast player là một tiện ích mở rộng Chrome được phát triển bởi krakesh14638, và tính năng chính của nó là "Plays local videos on Chrome/Chromecast (with subtitles)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng cast player

Tải xuống các tệp mở rộng cast player dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên cast player cast player
ID dionggdmdobjjolppiiejleechniphok
URL Chính Thức https://chromewebstore.google.com/detail/cast-player/dionggdmdobjjolppiiejleechniphok
Mô tả Plays local videos on Chrome/Chromecast (with subtitles)
Kích Thước Tệp 203 KB
Số Lần Cài Đặt 132,756
Phiên Bản Hiện Tại 0.8.1
Cập Nhật Lần Cuối 2024-02-26
Ngày Phát Hành 2019-06-28
Đánh Giá 2.87/5 Tổng số 399 Đánh Giá
Nhà Phát Triển krakesh14638
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}