YouHide
Hides viewed videos on Youtube's subscriptions page
什麼是YouHide?
YouHide是由Maxime Cousinou開發的Chrome擴展程式,該擴展的主要功能是“Hides viewed videos on Youtube's subscriptions page”。
擴展截圖
下載YouHide擴展crx文件
下載YouHide擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Automatically hides viewed and partially viewed items and shorts.
Alternate between hidden, quasi-transparent and original display. 擴展基本資訊
| 名稱 | |
| ID | gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
| 官方網址 | https://chromewebstore.google.com/detail/youhide/gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
| 簡介 | Hides viewed videos on Youtube's subscriptions page |
| 檔案大小 | 10.28 KB |
| 安裝次數 | 336 |
| 目前版本 | 2.0.2 |
| 更新時間 | 2024-01-13 |
| 上架時間 | 2017-09-08 |
| 評分 | 3.88/5 共 17 次評分 |
| 開發者 | Maxime Cousinou |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouHide",
"description": "Hides viewed videos on Youtube's subscriptions page",
"version": "2.0.2",
"icons": {
"128": "icon.png"
},
"action": {
"default_icon": {
"16": "icon-hidden.png",
"38": "[email protected]"
},
"default_title": "Toggle"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"injected.js"
],
"css": [
"injected.css"
]
}
]
} | |