Crunchyroll Full Screen, All The Time

Crunchyroll Full Screen, All The Time

Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Crunchyroll Full Screen, All The Time",
  "version": "0.5",
  "description": "Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.",
  "content_scripts": [
    {
      "matches": [
        "https://www.crunchyroll.com/*/*",
        "http://www.crunchyroll.com/*/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Crunchyroll Fullscreen",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistant": false
  }
}