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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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
이메일 [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
}