Udemy Double Subtitle
Double Subtitle
Co to jest Udemy Double Subtitle?
Udemy Double Subtitle to rozszerzenie Chrome opracowane przez robertkao5656, a jego główną funkcją jest „Double Subtitle”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Udemy Double Subtitle
Pobierz pliki rozszerzeń Udemy Double Subtitle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Support double subtitles for Udemy: Subtitle Mode: Support off, Single, and Dual Second Language: Supports 12 languages showing dual subtitles, they support Arabic, Chinese Traditional, Chinese Simplified, French, German, Hindi, Italian, Japanese, Korean, Portuguese, Spanish, and Turkmen. If you have any ideas, issues, or suggestions, you can send them to me at [email protected]
Podstawowe informacje o rozszerzeniu
Nazwa | Udemy Double Subtitle |
ID | hicpdhddknifpgembdnboojbnpmahfnj |
Oficjalny URL | https://chromewebstore.google.com/detail/udemy-double-subtitle/hicpdhddknifpgembdnboojbnpmahfnj |
Opis | Double Subtitle |
Rozmiar pliku | 203 KB |
Liczba instalacji | 106 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2023-12-13 |
Data Publikacji | 2023-10-30 |
Deweloper | robertkao5656 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Udemy Double Subtitle", "description": "Double Subtitle", "version": "1.1.0", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_popup": "popup.html", "default_title": "Udemy Double Subtitle", "default_icon": "icon.png" }, "permissions": [ "activeTab", "tabs", "storage" ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.udemy.com\/*" ], "js": [ "contentScript.js" ], "css": [ "contentScript.css" ], "run_at": "document_end", "all_frames": true } ] } |