Udemy Plus
Udemy Plus adds new features on top of your favorite Udemy.
Co to jest Udemy Plus?
Udemy Plus to rozszerzenie Chrome opracowane przez TulparDev, a jego główną funkcją jest „Udemy Plus adds new features on top of your favorite Udemy.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Udemy Plus
Pobierz pliki rozszerzeń Udemy Plus 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
Features: - More video rates - Mark course section completed/incompleted - Picture in Picture 🔥🔥🔥 - Ctrl + Right/Left arrows - to open next/previous video See upcoming features: https://github.com/sagynbek/udemy-plus
Podstawowe informacje o rozszerzeniu
Nazwa | Udemy Plus |
ID | llkblgkohonjafpigfbbamilgadmcilg |
Oficjalny URL | https://chromewebstore.google.com/detail/udemy-plus/llkblgkohonjafpigfbbamilgadmcilg |
Opis | Udemy Plus adds new features on top of your favorite Udemy. |
Rozmiar pliku | 22.14 KB |
Liczba instalacji | 2,542 |
Aktualna Wersja | 1.1.1 |
Ostatnia Aktualizacja | 2022-07-31 |
Data Publikacji | 2020-08-08 |
Ocena | 4.31/5 Łącznie 16 Oceny |
Deweloper | TulparDev |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | de,en,fr,tr,es,pt-PT,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extension_name__", "version": "1.1.1", "author": "Sagynbek Kenzhebaev", "description": "__MSG_extension_description__", "default_locale": "en", "action": { "default_title": "Udemy Plus", "default_popup": "ui\/popup\/index.html" }, "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.udemy.com\/*" ], "js": [ "inject\/index.js" ], "css": [ "ui\/page.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "ui\/themes\/dark.css", "ui\/themes\/default.css", "icons\/pip-icon.png" ], "matches": [ "https:\/\/*.udemy.com\/*" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.udemy.com\/*" ] } |