Crunchyroll Theater
Extends Crunchyroll's player to the full width and height of the browser for all resolutions
Crunchyroll Theater란 무엇입니까?
Crunchyroll Theater은(는) Anthony Bennett에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extends Crunchyroll's player to the full width and height of the browser for all resolutions"입니다.
확장 프로그램 스크린샷
Crunchyroll Theater 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Crunchyroll's default player is pretty small and on larger monitors can be annoying to use if you don't want to full screen. This extension makes the player use the full viewport of the browser for the best non-fullscreen viewing experience! Support for all ratios! Ability to hide the Crunchyroll header and scrollbar so the player can take advantage of the entire window view! v1.0.1 Update Notes ----- * Fixed Header not being properly hidden * Fixed issue when un-fullscreening player Source is available at https://github.com/invainn/crunchyroll-theater If there any bugs or problems with the extension, please leave feedback and an issue on GitHub! If you like (or dislike) the extension, please consider rating for feedback! If you really like the extension, consider buying me a coffee :) https://www.buymeacoffee.com/invainn
확장 프로그램 기본 정보
이름 | Crunchyroll Theater |
ID | dpggfkaifdajfnfkogccmpfinnffbjgo |
공식 URL | https://chromewebstore.google.com/detail/crunchyroll-theater/dpggfkaifdajfnfkogccmpfinnffbjgo |
설명 | Extends Crunchyroll's player to the full width and height of the browser for all resolutions |
파일 크기 | 75.08 KB |
설치 횟수 | 889 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2023-09-25 |
출시 날짜 | 2020-04-19 |
평점 | 4.60/5 총 10 개의 평점 |
개발자 | Anthony Bennett |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/invainn/crunchyroll-theater |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Crunchyroll Theater", "version": "1.0.1", "description": "Extends Crunchyroll's player to the full width and height of the browser for all resolutions", "permissions": [ "storage", "webNavigation", "tabs" ], "host_permissions": [ "https:\/\/www.crunchyroll.com\/*", "https:\/\/static.crunchyroll.com\/*" ], "action": { "default_title": "Crunchyroll Theater", "default_popup": "html\/popup.html" }, "icons": { "48": "images\/48x48.png", "128": "images\/128x128.png" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/static.crunchyroll.com\/*" ], "css": [ "css\/player.css" ], "js": [ "js\/player.js" ], "all_frames": true } ], "commands": { "toggle_header": { "suggested_key": { "default": "Ctrl+Comma" }, "description": "Toggles Crunchyroll's header" }, "toggle_scrollbar": { "suggested_key": { "default": "Ctrl+Period" }, "description": "Toggles Scrollbar" } } } |