Hide Funimation UI

Hide/show Funimation video UI with 'z' and use PageUp/PageDown or ArrowUp/ArrowDown keys to seek 1 second back/forward

Qu'est-ce que Hide Funimation UI ?

Hide Funimation UI est une extension Chrome développée par curlystrategist, et sa fonction principale est "Hide/show Funimation video UI with 'z' and use PageUp/PageDown or ArrowUp/ArrowDown keys to seek 1 second back/forward".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hide Funimation UI

Téléchargez les fichiers d'extension Hide Funimation UI au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hide Funimation UI Hide Funimation UI
ID kbcnlmdebncggiahkpdpkbgjhfembeja
URL Officiel https://chromewebstore.google.com/detail/hide-funimation-ui/kbcnlmdebncggiahkpdpkbgjhfembeja
Description Hide/show Funimation video UI with 'z' and use PageUp/PageDown or ArrowUp/ArrowDown keys to seek 1 second back/forward
Taille du Fichier 11.38 KB
Nombre d'Installations 2,571
Version Actuelle 2.1
Dernière Mise à Jour 2022-08-13
Date de Publication 2021-01-05
Évaluation 4.53/5 Total 17 Évaluations
Développeur curlystrategist
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/praabjerg/Hide-Funimation-UI
URL de la Page d'Aide https://github.com/praabjerg/Hide-Funimation-UI
Langues Prises en Charge 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
}