CrunchyRoll Theater Mode
A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface
What is CrunchyRoll Theater Mode?
CrunchyRoll Theater Mode is a Chrome extension developed by johnuberbacher, and its main feature is "A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface".
Extension Screenshots
Download CrunchyRoll Theater Mode Extension CRX File
Download CrunchyRoll Theater Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Ever found the default video size on CrunchyRoll just too narrow? This extension increases the size of CrunchyRoll Videos, similarly to the size of YouTube' Theater Mode, allowing for a much better viewing experience! New Update allows for responsive screen sizes up to 1400px
Extension Basic Information
Name | |
ID | fccfjcklfpanhmcgbpcmpjhgindhmlbp |
Official URL | https://chrome.google.com/webstore/detail/crunchyroll-theater-mode/fccfjcklfpanhmcgbpcmpjhgindhmlbp |
Description | A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface |
File Size | 28.98 KB |
Installation Count | 1,386 |
Current Version | 0.0.7 |
Last Updated | 2019-11-23 |
Publish Date | 2019-11-23 |
Rating | 4.25/5 Total 12 Ratings |
Developer | johnuberbacher |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CrunchyRoll Theater Mode", "version": "0.0.7", "description": "A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface", "icons": { "16": "images\/icon-32.png", "48": "images\/icon-64.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "https:\/\/www.crunchyroll.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*" ], "css": [ "style.css" ], "js": [ "background.js" ], "run_at": "document_idle" } ] } |