cast player

Plays local videos on Chrome/Chromecast (with subtitles)

cast player क्या है?

cast player krakesh14638 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Plays local videos on Chrome/Chromecast (with subtitles)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में cast player एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}