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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
    }
}