Youtube Video always visible & on top
Read comments while watching your favorite Youtube videos at the same time!
Youtube Video always visible & on top란 무엇입니까?
Youtube Video always visible & on top은(는) RCHRD에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read comments while watching your favorite Youtube videos at the same time!"입니다.
확장 프로그램 스크린샷
Youtube Video always visible & on top 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Read comments while watching your favorite Youtube videos at the same time. This extension will stick the video to the top of the screen while you are still able to scroll through the comments. The overlay on the video while hovering over it will also display the title, the amount of views and the percentage of likes / dislikes. Recommended resolution: 1920 x 1080 Version 1.1.2 - Fixed top margin when enabled Version 1.1.1 - Settings are now visible without having to refresh the page Version 1.1.0: - You can now enable/disable the extension in the settings menu at a Youtube video - Overlay is removed due to bugs - Fixed the white border on top of the screen when watching fullscreen videos - Fixed the positions so the playlist will stay at the same position
확장 프로그램 기본 정보
이름 | |
ID | enpddmbnhblebaopmncdijhfnjnbcdjm |
공식 URL | https://chrome.google.com/webstore/detail/youtube-video-always-visi/enpddmbnhblebaopmncdijhfnjnbcdjm |
설명 | Read comments while watching your favorite Youtube videos at the same time! |
파일 크기 | 45.49 KB |
설치 횟수 | 466 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2017-05-13 |
출시 날짜 | 2017-05-13 |
평점 | 2.87/5 총 15 개의 평점 |
개발자 | RCHRD |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Video always visible & on top", "short_name": "Youtube Video always visible", "description": "Read comments while watching your favorite Youtube videos at the same time!", "version": "1.1.2", "browser_action": { "persistent": true, "default_icon": "icon128.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "youtube.css" ], "js": [ "js\/jquery.js", "js\/script.js" ], "run_at": "document_end" } ] } |