YouTube Redux

Replicate old YouTube look and features within the modern layout!

YouTube Redux란 무엇입니까?

YouTube Redux은(는) omniZero에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replicate old YouTube look and features within the modern layout!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

YouTube Redux 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tired of looking for working alternatives to restore old Youtube layout? Embrace the current one modified in order to replicate multiple old styles while still actually using the modern Youtube interface.

Features include:
★ Customizable settings!
★ Classic video page layout along with its alternative version that mimics even older layouts
★ Small video player with size presets and pillarboxing
★ Disabling infinite scrolling for comments and related videos
★ Custom number of videos per row on the home page (from default 4 to 1-10)
★ True fullscreen mode
★ Automatic video unpausing during long sessions
★ Ability to restore classic YouTube logo and favicons
★ Precise, non-truncated values for likes/dislikes on the video page
★ Dark theme for playlists that matches old design
★ Hide the 'Autoplay' or 'Play on TV' button
★ Visual changes to home page, search results, channel page, explore pages and others
★ ...and more!                    

확장 프로그램 기본 정보

이름 YouTube Redux YouTube Redux
ID mdgdgieddpndgjlmeblhjgljejejkikf
공식 URL https://chromewebstore.google.com/detail/youtube-redux/mdgdgieddpndgjlmeblhjgljejejkikf
설명 Replicate old YouTube look and features within the modern layout!
파일 크기 303 KB
설치 횟수 43,379
현재 버전 3.4.1
최근 업데이트 2024-01-22
출시 날짜 2020-11-09
평점 4.36/5 총 606 개의 평점
개발자 omniZero
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/omnidevZero/YouTubeRedux
도움말 페이지 URL https://reddit.com/r/youtube/comments/u842nn/youtube_redux_old_layout_replication_extension/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Redux",
    "version": "3.4.1",
    "description": "Replicate old YouTube look and features within the modern layout!",
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "helpers\/logger.js",
                "helpers\/enums.js",
                "helpers\/states.js",
                "initial-setup.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        },
        {
            "resources": [
                "helpers\/*"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}