CustomTube - Restore the Old YouTube Layout

Choose your own YouTube layout, and more!

CustomTube - Restore the Old YouTube Layout란 무엇입니까?

CustomTube - Restore the Old YouTube Layout은(는) lightbeam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Choose your own YouTube layout, and more!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

CustomTube - Restore the Old YouTube Layout 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        What if you could just choose your YouTube layout? Well, now you can! CustomTube lets you choose between recreations of any YouTube layout from 2008-2021, all with a single click!

Outside of the layout selector, CustomTube has even more options, including:
-Ability to loop videos by default (with an option to exclude playlist videos)
-Choose the size of the video player
-Make search better by hiding some irrelevant results
-Hide the "Shorts" button on the sidebar
-And more, with even more options planned for future updates!                    

확장 프로그램 기본 정보

이름 CustomTube - Restore the Old YouTube Layout CustomTube - Restore the Old YouTube Layout
ID iedffooliepgabiihipcbokboecnfcbe
공식 URL https://chromewebstore.google.com/detail/customtube-restore-the-ol/iedffooliepgabiihipcbokboecnfcbe
설명 Choose your own YouTube layout, and more!
파일 크기 828 KB
설치 횟수 6,000
현재 버전 1.2.7.2
최근 업데이트 2024-02-02
출시 날짜 2023-08-21
평점 4.22/5 총 87 개의 평점
개발자 lightbeam
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lightbeam24/CustomTube
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CustomTube - Restore the Old YouTube Layout",
    "version": "1.2.7.2",
    "description": "Choose your own YouTube layout, and more!",
    "permissions": [
        "storage"
    ],
    "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\/*"
            ],
            "css": [
                "general.css",
                "css\/bt-universalized-elements.css",
                "css\/static.css",
                "css\/static-scrolling.css",
                "css\/psuedo-static.css",
                "css\/rich-grid.css",
                "css\/topbar.css",
                "css\/sidebar.css",
                "css\/chips.css",
                "css\/search.css",
                "css\/watch-page.css",
                "css\/watch-page-blobs.css",
                "css\/ltod.css",
                "css\/description.css",
                "css\/comments.css",
                "css\/playlist-panel.css",
                "css\/channel-rework.css",
                "css\/related-videos.css",
                "css\/cosmicpanda.css",
                "css\/polymer.css",
                "css\/sub-btn.css",
                "css\/menus.css",
                "css\/player.css",
                "css\/appbar.css",
                "css\/global-color-palette.css",
                "compatibility.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "initial-setup.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/*"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        },
        {
            "resources": [
                "css\/*"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        },
        {
            "resources": [
                "scripts\/*"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}