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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } } |