Improve Crunchyroll

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

Was ist Improve Crunchyroll?

Improve Crunchyroll ist eine Chrome-Erweiterung, die von Thomas Tavernier entwickelt wurde, und ihr Hauptmerkmal ist "Enhance Crunchyroll: theater mode, skip intros/outros, mark as watched/not watched, fast forward/backward buttons, ...".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Improve Crunchyroll-Erweiterungs-CRX-Datei herunterladen

Laden Sie Improve Crunchyroll-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Improve Crunchyroll Improve Crunchyroll
ID elmhfjhlecffodalffipmgpploaihjgh
Offizielle URL https://chromewebstore.google.com/detail/improve-crunchyroll/elmhfjhlecffodalffipmgpploaihjgh
Beschreibung Enhance Crunchyroll: theater mode, skip intros/outros, mark as watched/not watched, fast forward/backward buttons, ...
Dateigröße 76.26 KB
Installationsanzahl 32,533
Aktuelle Version 4.4.0
Letztes Update 2024-01-19
Veröffentlichungsdatum 2020-06-27
Bewertung 4.65/5 Insgesamt 160 Bewertungen
Entwickler Thomas Tavernier
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ThomasTavernier/Improve-Crunchyroll
Unterstützte Sprachen 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"
        }
    ]
}