Streaming Video Party Tool
A simple tool to help holding video part mainly for streaming.
Streaming Video Party Tool란 무엇입니까?
Streaming Video Party Tool은(는) danny8376에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple tool to help holding video part mainly for streaming."입니다.
확장 프로그램 스크린샷
Streaming Video Party Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Streaming Video Party Tool |
ID | ejjcgcillnknldlnjomjockdceikloja |
공식 URL | https://chromewebstore.google.com/detail/streaming-video-party-too/ejjcgcillnknldlnjomjockdceikloja |
설명 | A simple tool to help holding video part mainly for streaming. |
파일 크기 | 102 KB |
설치 횟수 | 213 |
현재 버전 | 0.0.9 (beta) |
최근 업데이트 | 2021-08-16 |
출시 날짜 | 2021-05-23 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | danny8376 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://video-party.saru.moe/ |
도움말 페이지 URL | https://github.com/danny8376/streaming-video-party-tool/issues |
지원되는 언어 | 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 } ] } |