npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

videoplayer-extension

v1.1.1

Published

A helper library for VideoPlayer Browser Extension

Downloads

597

Readme

videoplayer-extension

A helper library for VideoPlayer Browser Extension

https://sharkiller.dev/videoplayer/

https://github.com/sharkiller/Reproductor-MPD-M3U8

How to use

https://github.com/sharkiller/Reproductor-MPD-M3U8/wiki/Embed-player

Required

⚠️ This validate VideoPlayer Extension and get the path of the players on different browsers.

Direct Usage Example

<!-- Use unpkg, or you can host the script on your own. -->
<script src="https://unpkg.com/videoplayer-extension@latest/index.min.js"></script>

<script>
    (async () => {
        // This check if the extension is installed and populate the variables.
        const vp = await VideoPlayer.init();

        // Ask if the extension could be found
        if ( vp.isInstalled() ) {
            // Firefox: moz-extension://{RANDOM-UUID}/pages/player.html
            // Chrome: chrome-extension://opmeopcambhfimffbomjgemehjkbbmji/pages/player.html
            let direct_player_url = vp.getDirectPlayer();

            // Firefox: moz-extension://{RANDOM-UUID}/iptv/player.html
            // Chrome: chrome-extension://opmeopcambhfimffbomjgemehjkbbmji/iptv/player.html
            let iptv_player_url = vp.getIPTVPlayer();

            /**
             * Your code when the extension is found.
             */

                    // Example
            const extension_url = new URL(direct_player_url);

            const media_url = new URL('https://livesim.dashif.org/livesim2/testpic4_8s/Manifest.mpd');
            media_url.searchParams.set('title', 'Stream Test Example');
            // HTTP Headers example
            media_url.searchParams.set('headers', btoa(JSON.stringify({
                'User-Agent': 'VideoPlayer Extension',
                'referer': 'https://sharkiller.dev/videoplayer/',
            })));
            // ClearKey example
            media_url.searchParams.set('ck', btoa(JSON.stringify({
                "11223344556677889900aabbccddeeff":"11223344556677889900aabbccddeeff",
                "223344556677889900aabbccddeeff11":"223344556677889900aabbccddeeff11",
                "3344556677889900aabbccddeeff1122":"3344556677889900aabbccddeeff1122"
            })));

            // Or you can assign, to the extension hash, your full media url directly
            extension_url.hash = media_url.href;

            const iframe = document.querySelector('iframe.example');
            iframe.setAttribute('src', extension_url.href);
            iframe.style.display = 'block';

        } else {
            // Return https://sharkiller.dev/videoplayer/ to let users install the extension.
            let install_url = VideoPlayer.getInstallUrl();

            /**
             * Your code when the extension cannot be found.
             */

                    // Example
            const div = document.querySelector('div.install');
            div.innerHTML = `Install the extension: <a href="${install_url}" target="_blank">${install_url}</a>`;
            div.style.display = 'block';
        }
    })();
</script>

<div class="install" style="display: none"></div>
<iframe class="example" allow="encrypted-media *; autoplay" width="1280" height="720" style="display: none"></iframe>