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!”。
扩展截图
下载CustomTube - Restore the Old YouTube Layout扩展crx文件
下载CustomTube - Restore the Old YouTube Layout扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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! 扩展基本信息
| 名称 | |
| 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
} | |