CrunchyRoll Theater Mode

A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface

Qu'est-ce que CrunchyRoll Theater Mode ?

CrunchyRoll Theater Mode est une extension Chrome développée par johnuberbacher, et sa fonction principale est "A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension CrunchyRoll Theater Mode

Téléchargez les fichiers d'extension CrunchyRoll Theater Mode 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

                        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                    

Informations de Base sur l'Extension

Nom CrunchyRoll Theater Mode CrunchyRoll Theater Mode
ID fccfjcklfpanhmcgbpcmpjhgindhmlbp
URL Officiel 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
Taille du Fichier 28.98 KB
Nombre d'Installations 1,386
Version Actuelle 0.0.7
Dernière Mise à Jour 2019-11-23
Date de Publication 2019-11-23
Évaluation 4.25/5 Total 12 Évaluations
Développeur johnuberbacher
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}