CrunchyRoll Theater Mode

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

什麼是CrunchyRoll Theater Mode?

CrunchyRoll Theater Mode是由johnuberbacher開發的Chrome擴展程式,該擴展的主要功能是“A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface”。

擴展截圖

screenshot

下載CrunchyRoll Theater Mode擴展crx文件

下載CrunchyRoll Theater Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 CrunchyRoll Theater Mode CrunchyRoll Theater Mode
ID fccfjcklfpanhmcgbpcmpjhgindhmlbp
官方網址 https://chrome.google.com/webstore/detail/crunchyroll-theater-mode/fccfjcklfpanhmcgbpcmpjhgindhmlbp
簡介 A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface
檔案大小 28.98 KB
安裝次數 1,386
目前版本 0.0.7
更新時間 2019-11-23
上架時間 2019-11-23
評分 4.25/5 共 12 次評分
開發者 johnuberbacher
付費類型 free
支援的語言 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"
        }
    ]
}