Skillshare Dual Subtitles - Subttl Translator
Subtitle translator for Skillshare. Displays bilingual subtitles.
Skillshare Dual Subtitles - Subttl Translator란 무엇입니까?
Skillshare Dual Subtitles - Subttl Translator은(는) https://subtrans.cc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Subtitle translator for Skillshare. Displays bilingual subtitles."입니다.
확장 프로그램 스크린샷
Skillshare Dual Subtitles - Subttl Translator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🎯 Skillshare Dual Subtitles is a Skillshare subtitle translator. It extends the original Skillshare Subtitle into bilingual subtitles. 🌍 Skillshare Dual Subtitles can translate official subtitles / captions of videos that are hosted on site skillshare.com into almost all widely used languages. To make it work, the video should have AT LEAST one official subtitle / caption. 🛠 The styles of the subtitles are settable. You can set styles for the bilingual subtitles separately, including font size, font color, font weight, opacity, background color, etc. 🚠 The subtitles are filled in a draggable box. Hence you can adjust the subtitles' position as you wish. 👉 Features: ✅ Display bilingual subtitles ✅ Support most languages ✅ Support subtitle styles settings ✅ Subtitle position is draggable ✅ Support full screen ✅ No need to set up every time 🏗 Should you have any questions, contact me at [email protected]
확장 프로그램 기본 정보
이름 | Skillshare Dual Subtitles - Subttl Translator |
ID | jjgimmjppfdhjlacbjfololcdhdpjchh |
공식 URL | https://chromewebstore.google.com/detail/skillshare-dual-subtitles/jjgimmjppfdhjlacbjfololcdhdpjchh |
설명 | Subtitle translator for Skillshare. Displays bilingual subtitles. |
파일 크기 | 478 KB |
설치 횟수 | 226 |
현재 버전 | 1.5.0 |
최근 업데이트 | 2023-07-10 |
출시 날짜 | 2023-04-06 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://subtrans.cc |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://subtrans.cc |
지원되는 언어 | en,vi,es,pt-BR,pt-PT,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_ext_fulltitle__", "description": "__MSG_ext_description__", "manifest_version": 3, "version": "1.5.0", "permissions": [ "storage", "webRequest" ], "default_locale": "en", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" } }, "background": { "service_worker": "background.js" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/www.skillshare.com\/*" ], "js": [ "content.js" ], "all_frames": true, "run_at": "document_idle" }, { "matches": [ "https:\/\/www.skillshare.com\/*" ], "js": [ "injSSWrapper.js" ], "all_frames": false, "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "injSS.js" ], "matches": [ "https:\/\/www.skillshare.com\/*" ] } ], "externally_connectable": { "matches": [ "https:\/\/skillshare.subtrans.cc\/*" ] }, "host_permissions": [ "https:\/\/www.skillshare.com\/*" ] } |