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文件
下载Crunchyroll Theater扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } } |