Crunchyroll Essentials

It also works on Crunchyroll Beta! Put Crunchyroll automatically in full screen when next episode start, skip openings and…

Crunchyroll Essentialsคืออะไร?

Crunchyroll Essentials เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jeanheckstore และคุณลักษณะหลักของมันคือ "It also works on Crunchyroll Beta! Put Crunchyroll automatically in full screen when next episode start, skip openings and…"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        It also works on Crunchyroll Beta!

Put Crunchyroll automatically in full screen when next episode start, skip openings and endings, and skip fillers!

You can use the toogle buttons to turn on/off the functions, or if you want, you can use the keyboard shortcuts too:

 * (Alt + Shift + O): Open/close the extension;
 * (Alt + Shift + P): Turn on/off the full screen mode (And don't forget to press F11!);
 * (Alt + Shift + L): Turn on/off the skip opening and ending mode;
 * (Alt + Shift + K): Turn on/off the skip filler mode;

Updated list of supported animes: https://crunchyroll-essentials-api.herokuapp.com/
Common questions: https://crunchyroll-essentials-api.herokuapp.com/common_questions
Suggest an anime for the extension: https://crunchyroll-essentials-api.herokuapp.com/suggest_an_anime                    

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

ชื่อ Crunchyroll Essentials Crunchyroll Essentials
ID hkgpebhfhkmcefnpegoondcadddeflih
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/crunchyroll-essentials/hkgpebhfhkmcefnpegoondcadddeflih
คำอธิบาย It also works on Crunchyroll Beta! Put Crunchyroll automatically in full screen when next episode start, skip openings and…
ขนาดไฟล์ 165 KB
จำนวนการติดตั้ง 828
เวอร์ชันปัจจุบัน 3.1.7
อัปเดตครั้งล่าสุด 2022-01-20
วันที่เผยแพร่ 2021-03-26
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา jeanheckstore
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://crunchyroll-essentials-api.herokuapp.com/
URL หน้าช่วยเหลือ https://github.com/jeanheck/crunchyroll-essentials/issues/new/choose
ภาษาที่รองรับ de,en-US,es,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Crunchyroll Essentials",
    "version": "3.1.7",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/www.crunchyroll.com\/*\/*",
                "http:\/\/www.crunchyroll.com\/*\/*",
                "https:\/\/beta.crunchyroll.com\/*\/*\/*"
            ],
            "js": [
                "assets\/js\/jquery-3.6.0.min.js",
                "content_scripts\/js\/fullscreen.js"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "assets\/js\/jquery-3.6.0.min.js",
                "content_scripts\/js\/skipOpeningEnding.js"
            ],
            "matches": [
                "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "assets\/js\/jquery-3.6.0.min.js",
                "content_scripts\/js\/skipFiller.js"
            ],
            "css": [
                "content_scripts\/css\/skipFiller.css"
            ],
            "matches": [
                "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "assets\/js\/jquery-3.6.0.min.js",
                "content_scripts\/js\/jumpEpisode.js"
            ],
            "matches": [
                "https:\/\/www.crunchyroll.com\/*\/*",
                "http:\/\/www.crunchyroll.com\/*\/*",
                "https:\/\/beta.crunchyroll.com\/*\/*\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Crunchyroll Essentials",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "assets\/images\/icons\/16.png",
        "48": "assets\/images\/icons\/48.png",
        "128": "assets\/images\/icons\/128.png"
    },
    "commands": {
        "turn_on_turn_off_full_screen": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Turn on or turn off the full screen mode."
        },
        "turn_on_turn_off_skip_opening_ending": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Turn on or turn off the skip intro\/ending mode."
        },
        "turn_on_turn_off_skip_filler": {
            "suggested_key": {
                "default": "Alt+Shift+K"
            },
            "description": "Turn on or turn off the skip filler mode."
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            }
        }
    },
    "default_locale": "en_US",
    "background": {
        "service_worker": "background.js"
    }
}