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文件

下載Improve Crunchyroll擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}