Crunchyroll Theater

Crunchyroll Theater

Extends Crunchyroll's player to the full width and height of the browser for all resolutions

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Crunchyroll Theater",
  "version": "1.0.1",
  "description": "Extends Crunchyroll's player to the full width and height of the browser for all resolutions",
  "permissions": [
    "storage",
    "webNavigation",
    "tabs"
  ],
  "host_permissions": [
    "https://www.crunchyroll.com/*",
    "https://static.crunchyroll.com/*"
  ],
  "action": {
    "default_title": "Crunchyroll Theater",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.crunchyroll.com/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://static.crunchyroll.com/*"
      ],
      "css": [
        "css/player.css"
      ],
      "js": [
        "js/player.js"
      ],
      "all_frames": true
    }
  ],
  "commands": {
    "toggle_header": {
      "suggested_key": {
        "default": "Ctrl+Comma"
      },
      "description": "Toggles Crunchyroll's header"
    },
    "toggle_scrollbar": {
      "suggested_key": {
        "default": "Ctrl+Period"
      },
      "description": "Toggles Scrollbar"
    }
  }
}