Streaming Video Party Tool

A simple tool to help holding video part mainly for streaming.

Co je Streaming Video Party Tool?

Streaming Video Party Tool je rozšíření Chrome vyvinuté danny8376, a jeho hlavní funkcí je „A simple tool to help holding video part mainly for streaming.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Streaming Video Party Tool

Stáhněte si soubory rozšíření Streaming Video Party Tool ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        A simple tool to help holding video part mainly for streaming.  There's two functions.
First, it provide a popup window which show current video playing progress and can be captured by streaming software.
Second, you can host a video party room which viewers are synced to your browser tab, including videos, playback progress.When you seek/pause your video, your viewers are synced. When you navigate to other video, your viewers are also automatically redirect to the video you watch.

This version is still considered as beta version, though slightly tested.                    

Základní Informace o Rozšíření

Název Streaming Video Party Tool Streaming Video Party Tool
ID ejjcgcillnknldlnjomjockdceikloja
Oficiální URL https://chromewebstore.google.com/detail/streaming-video-party-too/ejjcgcillnknldlnjomjockdceikloja
Popis A simple tool to help holding video part mainly for streaming.
Velikost souboru 102 KB
Počet instalací 213
Aktuální Verze 0.0.9 (beta)
Poslední Aktualizace 2021-08-16
Datum Vydání 2021-05-23
Hodnocení 1.00/5 Celkem 1 Hodnocení
Vývojář danny8376
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://video-party.saru.moe/
URL Stránky Nápovědy https://github.com/danny8376/streaming-video-party-tool/issues
Podporované Jazyky en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.0.9",
    "short_name": "__MSG_appShortName__",
    "version_name": "0.0.9 (beta)",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_ui": {
        "page": "pages\/options.html",
        "browser_style": true
    },
    "permissions": [
        "*:\/\/video-party.saru.moe\/room*",
        "*:\/\/ani.gamer.com.tw\/animeVideo.php*",
        "*:\/\/www.youtube.com\/watch*",
        "*:\/\/www.youtube.com\/embed\/*",
        "*:\/\/www.youtube.com\/clip\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/video-party.saru.moe\/room*"
            ],
            "js": [
                "scripts\/platform_party_dummy.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/ani.gamer.com.tw\/animeVideo.php*"
            ],
            "js": [
                "scripts\/platform_ani_gamer.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/watch*",
                "*:\/\/www.youtube.com\/embed\/*",
                "*:\/\/www.youtube.com\/clip\/*"
            ],
            "js": [
                "scripts\/platform_youtube.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}