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
}
} | |