Udemy Enhancer

A useful tool to improve the user experience of Udemy.

Udemy Enhancer란 무엇입니까?

Udemy Enhancer은(는) snh90100에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A useful tool to improve the user experience of Udemy."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Udemy Enhancer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension offers features to improve your user experience on the Udemy website.

Attention: These features only appear on the lecture page.

Current features:
1. The user can extend video size to fill the entire webpage, similar to Youtube's theater mode.
2. Picture-in-Picture
3. The user can use the mouse to capture an area and then take a screenshot of the selected area. Press Ctrl+C to cancel.
4. The user can adjust the video play speed. To set the minimum and maximum speed and the slider interval,  right-click the extension icon and select the option page to update.

Udemy may update its code and make the extension features not working. If you encounter any issues or want to contribute to the extension, please visit the repository and open an issue.
https://github.com/a90100/udemy-enhancer

If this extension greatly improves your experience, please consider giving it a five-star review! If you encounter any issues, please let me know. Thank you!                    

확장 프로그램 기본 정보

이름 Udemy Enhancer Udemy Enhancer
ID ncfomdkhmodhjcnabelemeokekkoennd
공식 URL https://chromewebstore.google.com/detail/udemy-enhancer/ncfomdkhmodhjcnabelemeokekkoennd
설명 A useful tool to improve the user experience of Udemy.
파일 크기 1.3 MB
설치 횟수 167
현재 버전 1.0.0
최근 업데이트 2024-02-25
출시 날짜 2023-04-27
평점 4.00/5 총 1 개의 평점
개발자 snh90100
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/a90100/udemy-enhancer
개인정보 보호 정책 페이지 URL https://github.com/a90100/udemy-enhancer/wiki/Chrome-Extension-Privacy-Policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Udemy Enhancer",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "A useful tool to improve the user experience of Udemy.",
    "icons": {
        "16": "dist\/images\/magic-wand16.png",
        "32": "dist\/images\/magic-wand32.png",
        "48": "dist\/images\/magic-wand48.png",
        "128": "dist\/images\/magic-wand128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/*.udemy.com\/*",
        ""
    ],
    "action": {
        "default_title": "Click Me",
        "default_popup": "dist\/popup.html"
    },
    "background": {
        "service_worker": "dist\/js\/index.js"
    },
    "options_page": "dist\/option.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.udemy.com\/course\/*\/learn\/*"
            ],
            "js": [
                "dist\/js\/injector.js"
            ],
            "css": [
                "dist\/css\/injector.css"
            ]
        }
    ]
}