Streaming Video Party Tool
A simple tool to help holding video part mainly for streaming.
Cos'è Streaming Video Party Tool?
Streaming Video Party Tool è un'estensione di Chrome sviluppata da danny8376, e la sua funzione principale è "A simple tool to help holding video part mainly for streaming.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Streaming Video Party Tool
Scarica i file di estensione Streaming Video Party Tool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Streaming Video Party Tool |
ID | ejjcgcillnknldlnjomjockdceikloja |
URL Ufficiale | https://chromewebstore.google.com/detail/streaming-video-party-too/ejjcgcillnknldlnjomjockdceikloja |
Descrizione | A simple tool to help holding video part mainly for streaming. |
Dimensione del File | 102 KB |
Conteggio Installazioni | 213 |
Versione Corrente | 0.0.9 (beta) |
Ultimo Aggiornamento | 2021-08-16 |
Data di Pubblicazione | 2021-05-23 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | danny8376 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://video-party.saru.moe/ |
URL della Pagina di Aiuto | https://github.com/danny8376/streaming-video-party-tool/issues |
Lingue Supportate | 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 } ] } |