Video Maximizer

Remove visual clutter and maximizes videos for easy viewing, including full-page theater mode on most sites.

Video Maximizer란 무엇입니까?

Video Maximizer은(는) trophygeek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove visual clutter and maximizes videos for easy viewing, including full-page theater mode on most sites."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Video Maximizer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        WHAT IT DOES:
Universal Video Maximizer is a free and open source Chrome extension that allows users to watch videos in full-browser-window mode on most websites, without the extension requiring full permissions to every site. It also has a "theater mode" that removes the navigation bar and other UI elements for a undistracted viewing experience.

  ✔ Working great since 2013
  ✔ Dark themed theater mode
  ✔ Secure and private!
  ✔ Great for ultrawide monitors
  ✔ Free and open source
  ✔ Control playback speed on most sites (Prime, HBO, Apple, etc) 

This extension is FREE and done as a hobby. 

Fully commented open-source code for transparency: https://github.com/trophygeek/universalvideomaximizer

💔 Found a bug or site that doesn't work? Report it here:
https://github.com/trophygeek/universalvideomaximizer/issues                    

확장 프로그램 기본 정보

이름 Video Maximizer Video Maximizer
ID cdnlfphfngnfhjcnoikfhaomaaflaiie
공식 URL https://chromewebstore.google.com/detail/video-maximizer/cdnlfphfngnfhjcnoikfhaomaaflaiie
설명 Remove visual clutter and maximizes videos for easy viewing, including full-page theater mode on most sites.
파일 크기 554 KB
설치 횟수 11,187
현재 버전 3.0.115
최근 업데이트 2023-11-13
출시 날짜 2013-12-18
평점 4.77/5 총 154 개의 평점
개발자 trophygeek
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/trophygeek/universalvideomaximizer/issues
개인정보 보호 정책 페이지 URL https://trophygeek.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Maximizer",
    "version": "3.0.115",
    "manifest_version": 3,
    "description": "Remove visual clutter and maximizes videos for easy viewing, including full-page theater mode on most sites.",
    "homepage_url": "https:\/\/github.com\/trophygeek\/universalvideomaximizer",
    "icons": {
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "action": {
        "default_title": "Click to zoom video on page.\nRight-click to change Options"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "optional_permissions": [
        "scripting"
    ],
    "optional_host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "videomax_inject.css"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'none';",
        "sandbox": "sandbox allow-scripts; script-src 'self'; child-src 'self';"
    }
}