Crunchyroll Full Screen, All The Time
Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.
什么是Crunchyroll Full Screen, All The Time?
Crunchyroll Full Screen, All The Time是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.”。
扩展截图
下载Crunchyroll Full Screen, All The Time扩展crx文件
下载Crunchyroll Full Screen, All The Time扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ever get annoyed that Crunchyroll exits full screen when autoplaying the next episode? This will stop that. Just get to a show, click on the extension "toggle binge mode" button, and you can binge in peace, without having to click the fullscreen button every time. 扩展基本信息
| 名称 | |
| ID | aebamgnddkjifkidngamjohhgkfholmj |
| 官方URL | https://chromewebstore.google.com/detail/crunchyroll-full-screen-a/aebamgnddkjifkidngamjohhgkfholmj |
| 简介 | Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge. |
| 文件大小 | 35.02 KB |
| 安装次数 | 3,977 |
| 当前版本 | 0.5 |
| 更新时间 | 2019-09-14 |
| 上架时间 | 2019-09-13 |
| 评分 | 4.15/5 共26次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Crunchyroll Full Screen, All The Time",
"version": "0.5",
"description": "Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.",
"content_scripts": [
{
"matches": [
"https:\/\/www.crunchyroll.com\/*\/*",
"http:\/\/www.crunchyroll.com\/*\/*"
],
"js": [
"jquery-3.4.1.min.js",
"content.js"
]
}
],
"browser_action": {
"default_title": "Crunchyroll Fullscreen",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistant": false
}
} | |