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 هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Crunchyroll Full Screen, All The Time

قم بتنزيل ملفات الامتداد Crunchyroll Full Screen, All The Time بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
    }
}