Udemy Dark Theme
A dark theme for the udemy website
Udemy Dark Theme란 무엇입니까?
Udemy Dark Theme은(는) udemy-dark-theme-devs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A dark theme for the udemy website"입니다.
확장 프로그램 스크린샷
Udemy Dark Theme 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds dark theme for the udemy.com website Features: - adds a dark theme for all views inside the udemy.com domain - allows you to configure custom colours to create your own theme -------------------- Github: https://github.com/Pachciar3/udemy-dark-mode-extension Authors: Dawid - https://github.com/Pachciar3/ Menno - https://mennoveerkamp.com/
확장 프로그램 기본 정보
이름 | Udemy Dark Theme |
ID | mnloceeicbhfhinjcnfieonmpindkmpb |
공식 URL | https://chromewebstore.google.com/detail/udemy-dark-theme/mnloceeicbhfhinjcnfieonmpindkmpb |
설명 | A dark theme for the udemy website |
파일 크기 | 51.25 KB |
설치 횟수 | 14,161 |
현재 버전 | 2.1.5 |
최근 업데이트 | 2023-11-02 |
출시 날짜 | 2020-05-03 |
평점 | 4.31/5 총 74 개의 평점 |
개발자 | udemy-dark-theme-devs |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Udemy Dark Theme", "version": "2.1.5", "description": "A dark theme for the udemy website", "permissions": [ "activeTab", "declarativeContent", "storage", "scripting" ], "options_page": "options.html", "background": { "service_worker": "serviceWorker.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/udemy_dark_mode16.png", "32": "icons\/udemy_dark_mode32.png", "48": "icons\/udemy_dark_mode48.png", "128": "icons\/udemy_dark_mode128.png" } }, "icons": { "16": "icons\/udemy_dark_mode16.png", "32": "icons\/udemy_dark_mode32.png", "48": "icons\/udemy_dark_mode48.png", "128": "icons\/udemy_dark_mode128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.udemy.com\/*" ], "css": [ "styles\/background.css" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "manifest_version": 3 } |