Crunchyroll Theater

Extends Crunchyroll's player to the full width and height of the browser for all resolutions

Crunchyroll Theaterคืออะไร?

Crunchyroll Theater เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anthony Bennett และคุณลักษณะหลักของมันคือ "Extends Crunchyroll's player to the full width and height of the browser for all resolutions"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Crunchyroll Theater

ดาวน์โหลดไฟล์ส่วนขยาย Crunchyroll Theater ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Crunchyroll's default player is pretty small and on larger monitors can be annoying to use if you don't want to full screen. This extension makes the player use the full viewport of the browser for the best non-fullscreen viewing experience! Support for all ratios!

Ability to hide the Crunchyroll header and scrollbar so the player can take advantage of the entire window view!

v1.0.1 Update Notes
-----
* Fixed Header not being properly hidden 
* Fixed issue when un-fullscreening player

Source is available at https://github.com/invainn/crunchyroll-theater

If there any bugs or problems with the extension, please leave feedback and an issue on GitHub!

If you like (or dislike) the extension, please consider rating for feedback!

If you really like the extension, consider buying me a coffee :)
https://www.buymeacoffee.com/invainn                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Crunchyroll Theater Crunchyroll Theater
ID dpggfkaifdajfnfkogccmpfinnffbjgo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/crunchyroll-theater/dpggfkaifdajfnfkogccmpfinnffbjgo
คำอธิบาย Extends Crunchyroll's player to the full width and height of the browser for all resolutions
ขนาดไฟล์ 75.08 KB
จำนวนการติดตั้ง 889
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-09-25
วันที่เผยแพร่ 2020-04-19
คะแนน 4.60/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Anthony Bennett
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/invainn/crunchyroll-theater
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Crunchyroll Theater",
    "version": "1.0.1",
    "description": "Extends Crunchyroll's player to the full width and height of the browser for all resolutions",
    "permissions": [
        "storage",
        "webNavigation",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.crunchyroll.com\/*",
        "https:\/\/static.crunchyroll.com\/*"
    ],
    "action": {
        "default_title": "Crunchyroll Theater",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/static.crunchyroll.com\/*"
            ],
            "css": [
                "css\/player.css"
            ],
            "js": [
                "js\/player.js"
            ],
            "all_frames": true
        }
    ],
    "commands": {
        "toggle_header": {
            "suggested_key": {
                "default": "Ctrl+Comma"
            },
            "description": "Toggles Crunchyroll's header"
        },
        "toggle_scrollbar": {
            "suggested_key": {
                "default": "Ctrl+Period"
            },
            "description": "Toggles Scrollbar"
        }
    }
}