Crunchyroll With Better Seasons
Instead of having multiple seasons as DUBS, change audio language directly from the episode.
什么是Crunchyroll With Better Seasons?
Crunchyroll With Better Seasons是由Dragicafit开发的Chrome扩展程序,该扩展的主要功能是“Instead of having multiple seasons as DUBS, change audio language directly from the episode.”。
扩展截图
下载Crunchyroll With Better Seasons扩展crx文件
下载Crunchyroll With Better Seasons扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Crunchyroll With Better Seasons is a cross-platform browser extension that changes the way seasons are displayed on Crunchyroll and adds the subtitles to the dub episodes. Old features now supported by Crunchyroll direclty: On the serie page, it groups all audio languages into a single seasons and reorder the seasons with a better numerotation. On the episode page, it adds a setting to change the audio language.
扩展基本信息
名称 | Crunchyroll With Better Seasons |
ID | ianobidcnpbeejlkclkfacnipclgiiak |
官方URL | https://chromewebstore.google.com/detail/crunchyroll-with-better-s/ianobidcnpbeejlkclkfacnipclgiiak |
简介 | Instead of having multiple seasons as DUBS, change audio language directly from the episode. |
文件大小 | 599 KB |
安装次数 | 1,075 |
当前版本 | 0.7.4 |
更新时间 | 2023-10-08 |
上架时间 | 2022-04-25 |
评分 | 4.47/5 共17次评分 |
开发者 | Dragicafit |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Dragicafit/Crunchyroll-With-Better-Seasons |
帮助页面URL | https://github.com/Dragicafit/Crunchyroll-With-Better-Seasons/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Crunchyroll With Better Seasons", "description": "Instead of having multiple seasons as DUBS, change audio language directly from the episode.", "version": "0.7.4", "author": "Dragicafit", "icons": { "16": "src\/icons\/icon16.png", "48": "src\/icons\/icon48.png", "128": "src\/icons\/icon128.png" }, "permissions": [ "storage", "declarativeNetRequestWithHostAccess" ], "host_permissions": [ "https:\/\/static.crunchyroll.com\/*" ], "action": { "default_title": "Crunchyroll With Better Seasons", "default_popup": "src\/popup\/popup.html", "default_icon": { "16": "src\/icons\/icon16.png", "24": "src\/icons\/icon24.png", "32": "src\/icons\/icon32.png" } }, "web_accessible_resources": [ { "resources": [ "src\/web-accessible-resources\/tab.bundle.js" ], "matches": [ "https:\/\/beta.crunchyroll.com\/*", "https:\/\/www.crunchyroll.com\/*", "https:\/\/crunchyroll.com\/*" ] }, { "resources": [ "src\/web-accessible-resources\/vilosOverride.bundle.js" ], "matches": [ "https:\/\/static.crunchyroll.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*" ], "js": [ "src\/content-scripts\/injectInPlayer.js" ], "all_frames": true, "run_at": "document_end" }, { "matches": [ "https:\/\/beta.crunchyroll.com\/*", "https:\/\/www.crunchyroll.com\/*", "https:\/\/crunchyroll.com\/*" ], "js": [ "src\/content-scripts\/injectInTab.bundle.js" ], "all_frames": false, "run_at": "document_start" } ], "declarative_net_request": { "rule_resources": [ { "id": "vilosOverride", "enabled": true, "path": "rules.json" } ] } } |