Crunchyroll Full Screen, All The Time

Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.

Crunchyroll Full Screen, All The Time क्या है?

Crunchyroll Full Screen, All The Time Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge."।

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

screenshot

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

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

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

                        Ever get annoyed that Crunchyroll exits full screen when autoplaying the next episode? This will stop that. Just get to a show, click on the extension "toggle binge mode" button, and you can binge in peace, without having to click the fullscreen button every time.                    

एक्सटेंशन की मूल जानकारी

नाम Crunchyroll Full Screen, All The Time Crunchyroll Full Screen, All The Time
ID aebamgnddkjifkidngamjohhgkfholmj
आधिकारिक URL https://chromewebstore.google.com/detail/crunchyroll-full-screen-a/aebamgnddkjifkidngamjohhgkfholmj
विवरण Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.
फ़ाइल का आकार 35.02 KB
स्थापना संख्या 3,977
वर्तमान संस्करण 0.5
अंतिम अपडेट 2019-09-14
प्रकाशन तिथि 2019-09-13
रेटिंग 4.15/5 कुल 26 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crunchyroll Full Screen, All The Time",
    "version": "0.5",
    "description": "Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*\/*",
                "http:\/\/www.crunchyroll.com\/*\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Crunchyroll Fullscreen",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistant": false
    }
}