CrunchyRoll Theater Mode

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

Cos'è CrunchyRoll Theater Mode?

CrunchyRoll Theater Mode è un'estensione di Chrome sviluppata da johnuberbacher, e la sua funzione principale è "A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione CrunchyRoll Theater Mode

Scarica i file di estensione CrunchyRoll Theater Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome CrunchyRoll Theater Mode CrunchyRoll Theater Mode
ID fccfjcklfpanhmcgbpcmpjhgindhmlbp
URL Ufficiale https://chrome.google.com/webstore/detail/crunchyroll-theater-mode/fccfjcklfpanhmcgbpcmpjhgindhmlbp
Descrizione A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface
Dimensione del File 28.98 KB
Conteggio Installazioni 1,386
Versione Corrente 0.0.7
Ultimo Aggiornamento 2019-11-23
Data di Pubblicazione 2019-11-23
Valutazione 4.25/5 Totale 12 Valutazioni
Sviluppatore johnuberbacher
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}