Improve Crunchyroll

Enhance Crunchyroll: theater mode, skip intros/outros, mark as watched/not watched, fast forward/backward buttons, ...

Improve Crunchyroll란 무엇입니까?

Improve Crunchyroll은(는) Thomas Tavernier에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhance Crunchyroll: theater mode, skip intros/outros, mark as watched/not watched, fast forward/backward buttons, ..."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Improve Crunchyroll 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Improve Crunchyroll can:
 - Make the video player bigger (2 mods)
 - Take all window in fullscreen
 - Skipping's buttons/shortcut for intros, recaps, outros... (buttons with time in it come from this extension and are subtitles based, won't be flawless, the others are native)
 - Control video playback speed in the existing player settings
 - Mark episode/entire series as watched/not watched
 - Blur or hide runner thumbnail
 - Hide scrollbar for a better immersion
 - Hide player dim screen
 - Hide subtitles
 - Hide play pause button
 - Hide player UI options & shortcuts
 - Disable NumPad
 - Add fast backward/forward buttons
 - Add fast backward/forward shortcuts
 - Add video playback speed shortcuts
 - Each features can be turn on/off
 - Backup/reset settings

New:
- Open header menu on hover option
- Add Picture-in-Picture button (no subtitles)

Support new version of Crunchyroll.
Feedbacks are welcomed!
Translation are made with google translate, it may contains errors.

Extension name and popup inspired by Improve YouTube extension!                    

확장 프로그램 기본 정보

이름 Improve Crunchyroll Improve Crunchyroll
ID elmhfjhlecffodalffipmgpploaihjgh
공식 URL https://chromewebstore.google.com/detail/improve-crunchyroll/elmhfjhlecffodalffipmgpploaihjgh
설명 Enhance Crunchyroll: theater mode, skip intros/outros, mark as watched/not watched, fast forward/backward buttons, ...
파일 크기 76.26 KB
설치 횟수 32,533
현재 버전 4.4.0
최근 업데이트 2024-01-19
출시 날짜 2020-06-27
평점 4.65/5 총 160 개의 평점
개발자 Thomas Tavernier
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ThomasTavernier/Improve-Crunchyroll
지원되는 언어 en,fr,es,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "4.4.0",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "author": "Thomas Tavernier ",
    "default_locale": "en",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "lib\/popup\/index.html"
    },
    "background": {
        "service_worker": "lib\/background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*"
            ],
            "js": [
                "lib\/shared\/chromeStorage.js",
                "lib\/shared\/renderer.js",
                "lib\/shared\/shortcutUtils.js",
                "lib\/content_scripts\/player\/buttons\/buttons.js",
                "lib\/content_scripts\/player\/fast-forward-backward\/fast-forward-backward.js",
                "lib\/content_scripts\/player\/playback\/playback.js",
                "lib\/content_scripts\/player\/render\/render.js",
                "lib\/content_scripts\/player\/settings\/settings.js",
                "lib\/content_scripts\/player\/shortcuts\/shortcuts.js",
                "lib\/content_scripts\/player\/skippers\/skippers.js",
                "lib\/content_scripts\/player\/main.js"
            ],
            "css": [
                "lib\/content_scripts\/player\/buttons\/buttons.css",
                "lib\/content_scripts\/player\/fast-forward-backward\/fast-forward-backward.css",
                "lib\/content_scripts\/player\/playback\/playback.css",
                "lib\/content_scripts\/player\/render\/render.css",
                "lib\/content_scripts\/player\/settings\/settings.css",
                "lib\/content_scripts\/player\/skippers\/skippers.css",
                "lib\/content_scripts\/player\/main.css"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/beta.crunchyroll.com\/*",
                "https:\/\/www.crunchyroll.com\/*"
            ],
            "js": [
                "lib\/shared\/chromeStorage.js",
                "lib\/shared\/renderer.js",
                "lib\/content_scripts\/website\/api\/api.js",
                "lib\/content_scripts\/website\/action-menu\/action-menu.js",
                "lib\/content_scripts\/website\/pages\/empty.js",
                "lib\/content_scripts\/website\/pages\/series\/series.js",
                "lib\/content_scripts\/website\/pages\/watch\/watch.js",
                "lib\/content_scripts\/website\/main.js"
            ],
            "css": [
                "lib\/shared\/theme-color.css",
                "lib\/content_scripts\/website\/action-menu\/action-menu.css",
                "lib\/content_scripts\/website\/pages\/watch\/watch.css",
                "lib\/content_scripts\/website\/main.css"
            ],
            "run_at": "document_idle"
        }
    ]
}