CrunchyRoll Theater Mode

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

O que é CrunchyRoll Theater Mode?

CrunchyRoll Theater Mode é uma extensão do Chrome desenvolvida por johnuberbacher, e sua principal característica é "A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CrunchyRoll Theater Mode

Baixe arquivos de extensão CrunchyRoll Theater Mode no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome CrunchyRoll Theater Mode CrunchyRoll Theater Mode
ID fccfjcklfpanhmcgbpcmpjhgindhmlbp
URL Oficial https://chrome.google.com/webstore/detail/crunchyroll-theater-mode/fccfjcklfpanhmcgbpcmpjhgindhmlbp
Descrição A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface
Tamanho do Arquivo 28.98 KB
Contagem de Instalações 1,386
Versão Atual 0.0.7
Última Atualização 2019-11-23
Data de Publicação 2019-11-23
Classificação 4.25/5 Total de 12 Avaliações
Desenvolvedor johnuberbacher
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}