Disney Plus Multi Subtitles
Dual Subtitles for Disney Plus
Co to jest Disney Plus Multi Subtitles?
Disney Plus Multi Subtitles to rozszerzenie Chrome opracowane przez https://athikannn.com, a jego główną funkcją jest „Dual Subtitles for Disney Plus”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Disney Plus Multi Subtitles
Pobierz pliki rozszerzeń Disney Plus Multi Subtitles 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
This extension creates 2 subtitles, can choose the language
Features:
- Enable dual subtitles in available languages. (Including subtitles according to the picture, such as English, Thai, Chinese…)
- Seamless integration with the original Disney Plus player UI - Switchable languages
- Free to use
Supported Websites:
- Disney Plus Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | mlignnglbafbhcekenpnmoodokopnenj |
| Oficjalny URL | https://chromewebstore.google.com/detail/disney-plus-multi-subtitl/mlignnglbafbhcekenpnmoodokopnenj |
| Opis | Dual Subtitles for Disney Plus |
| Rozmiar pliku | 28.72 KB |
| Liczba instalacji | 84 |
| Aktualna Wersja | 1.0.3 |
| Ostatnia Aktualizacja | 2023-12-09 |
| Data Publikacji | 2023-11-11 |
| Deweloper | https://athikannn.com |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Polityki Prywatności | https://athikannn.com/privacy-policy-disney-plus-multi-subtitles-extension |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Disney Plus Multi Subtitles",
"description": "Dual Subtitles for Disney Plus",
"homepage_url": "https:\/\/athikannn.com",
"version": "1.0.3",
"manifest_version": 3,
"content_scripts": [
{
"run_at": "document_start",
"js": [
"before.js"
],
"matches": [
"https:\/\/*.hotstar.com\/*"
]
},
{
"run_at": "document_idle",
"js": [
"after.js"
],
"matches": [
"https:\/\/*.hotstar.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"modal.html"
],
"matches": [
"https:\/\/*.hotstar.com\/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*.hotstar.com\/*"
],
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |