Hide Funimation UI
Hide/show Funimation video UI with 'z' and use PageUp/PageDown or ArrowUp/ArrowDown keys to seek 1 second back/forward
Hide Funimation UIとは何ですか?
Hide Funimation UIはcurlystrategistによって開発されたChromeの拡張機能で、その主な機能は「Hide/show Funimation video UI with 'z' and use PageUp/PageDown or ArrowUp/ArrowDown keys to seek 1 second back/forward」です。
拡張機能のスクリーンショット
Hide Funimation UI拡張機能のCRXファイルをダウンロード
Hide Funimation UI拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The Funimation video UI does not hide itself when paused. This can be very inconvenient when you want to take screenshots of videos. With this browser extension active, when watching a Funimation video, you can: * Press 'z' to hide the video UI * Use the up and down arrow keys (or the PgUp/PgDown keys) to seek back and forward in 1 second increments. This is a new version adapted to the new Funimation player. The hide functionality can now find the elements to hide in the new player. The seek functionality has changed to prevent conflict with the native controls. The player now uses left and right arrow keys natively for 5 second searches, so I've moved 1 second searching to up/down or PgUp/PgDown keys.
拡張機能の基本情報
名前 | Hide Funimation UI |
ID | kbcnlmdebncggiahkpdpkbgjhfembeja |
公式URL | https://chromewebstore.google.com/detail/hide-funimation-ui/kbcnlmdebncggiahkpdpkbgjhfembeja |
説明 | Hide/show Funimation video UI with 'z' and use PageUp/PageDown or ArrowUp/ArrowDown keys to seek 1 second back/forward |
ファイルサイズ | 11.38 KB |
インストール数 | 2,571 |
現在のバージョン | 2.1 |
最終更新日 | 2022-08-13 |
公開日 | 2021-01-05 |
評価 | 4.53/5 合計 17 レビュー |
開発者 | curlystrategist |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/praabjerg/Hide-Funimation-UI |
ヘルプページのURL | https://github.com/praabjerg/Hide-Funimation-UI |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide Funimation UI", "version": "2.1", "description": "Hide\/show Funimation video UI with 'z' and use PageUp\/PageDown or ArrowUp\/ArrowDown keys to seek 1 second back\/forward", "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/www.funimation.com\/v\/*" ], "js": [ "content_script.js" ], "css": [ "style.css" ] } ], "action": { "default_icon": { "16": "images\/no_funi_ui16.png", "32": "images\/no_funi_ui32.png", "48": "images\/no_funi_ui48.png", "128": "images\/no_funi_ui128.png" } }, "icons": { "16": "images\/no_funi_ui16.png", "32": "images\/no_funi_ui32.png", "48": "images\/no_funi_ui48.png", "128": "images\/no_funi_ui128.png" }, "manifest_version": 3 } |