Tube Scale
Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!
Tube Scale란 무엇입니까?
Tube Scale은(는) https://jameygleason.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!"입니다.
확장 프로그램 스크린샷
Tube Scale 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Similar to theater mode, but better! Make the YouTube player fill the browser window. When active, it removes the header bar and assures that if you are scrolled to the top of the screen, you will have nothing but video content in your browser window. Save yourself the trouble of going "full" full-screen so you can easily navigate between tabs and other programs with ease! This is an open source project. If you have ideas on how to make it better, become a contributor! https://github.com/jameygleason/tube_scale
확장 프로그램 기본 정보
이름 | Tube Scale |
ID | knaccnglpjaienjodleaolalepppfloc |
공식 URL | https://chromewebstore.google.com/detail/tube-scale/knaccnglpjaienjodleaolalepppfloc |
설명 | Scale the YouTube player to fill the browser window in one click. Advanced cinema mode! |
파일 크기 | 42.49 KB |
설치 횟수 | 13 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2018-12-17 |
출시 날짜 | 2018-12-16 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | https://jameygleason.com |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tube Scale", "description": "Scale the YouTube player to fill the browser window in one click. Advanced cinema mode!", "version": "1.0.2", "icons": { "128": "assets\/icon_128.png" }, "browser_action": { "default_icon": "assets\/icon.png", "\/\/": "default_popup colon popup.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] } } |