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”。

擴展截圖

screenshot
screenshot

下載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 Hide Funimation UI
ID kbcnlmdebncggiahkpdpkbgjhfembeja
官方網址 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
電子郵箱 [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
}