Hide Funimation UI

Hide Funimation UI

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

Merlin
Additional files are visible only to premium users

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
}