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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CrunchyRoll Theater Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
        }
    ]
}