Udemy Plus
Udemy Plus adds new features on top of your favorite Udemy.
Udemy Plus란 무엇입니까?
Udemy Plus은(는) TulparDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Udemy Plus adds new features on top of your favorite Udemy."입니다.
확장 프로그램 스크린샷
Udemy Plus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Udemy Plus |
ID | llkblgkohonjafpigfbbamilgadmcilg |
공식 URL | https://chromewebstore.google.com/detail/udemy-plus/llkblgkohonjafpigfbbamilgadmcilg |
설명 | Udemy Plus adds new features on top of your favorite Udemy. |
파일 크기 | 22.14 KB |
설치 횟수 | 2,542 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2022-07-31 |
출시 날짜 | 2020-08-08 |
평점 | 4.31/5 총 16 개의 평점 |
개발자 | TulparDev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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\/*" ] } |