YouTube Customizer
Customize your YouTube.
什麼是YouTube Customizer?
YouTube Customizer是由Nibito開發的Chrome擴展程式,該擴展的主要功能是“Customize your YouTube.”。
擴展截圖
下載YouTube Customizer擴展crx文件
下載YouTube Customizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Improve your video watching experience. Hide unnecessary elements on the page or within the player with this easy-to-use extension.
With this extension now you can:
- hide 'Share', 'Info', 'Watch more' buttons,
- hide 'More videos' panel
- make the title smaller,
- enable full-screen mode on pages without this option.
On YouTube page you can:
- hide up next panel and comments,
- disable autoplay.
More options in the future. 擴展基本資訊
| 名稱 | |
| ID | jjdpifbhmmdnkmndomeokjgnilcimoaj |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-customizer/jjdpifbhmmdnkmndomeokjgnilcimoaj |
| 簡介 | Customize your YouTube. |
| 檔案大小 | 41.9 KB |
| 安裝次數 | 585 |
| 目前版本 | 1.4.1 |
| 更新時間 | 2023-10-09 |
| 上架時間 | 2021-06-08 |
| 評分 | 3.67/5 共 3 次評分 |
| 開發者 | Nibito |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://nibito.com/?ref=youtube_customizer |
| 說明頁面URL | https://nibito.com |
| 隱私政策頁面URL | https://nibito.com/privacy-policy?ref=chrome-store |
| 支援的語言 | en,pl |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Customizer",
"version": "1.4.1",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"icons": {
"16": "resources\/icons\/icon_16.png",
"18": "resources\/icons\/icon_18.png",
"19": "resources\/icons\/icon_19.png",
"32": "resources\/icons\/icon_32.png",
"48": "resources\/icons\/icon_48.png",
"64": "resources\/icons\/icon_64.png",
"128": "resources\/icons\/icon_128.png"
},
"browser_action": {
"default_icon": {
"16": "resources\/icons\/icon_16.png",
"18": "resources\/icons\/icon_18.png",
"19": "resources\/icons\/icon_19.png",
"32": "resources\/icons\/icon_32.png",
"48": "resources\/icons\/icon_48.png"
},
"default_title": "YouTube Customizer",
"default_popup": "popup\/popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"all_frames": true,
"js": [
"shared.js",
"inject.js"
],
"css": [
"resources\/skin\/injectStyle.css"
]
}
],
"permissions": [
"storage"
]
} | |