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 |
| 公式URL | 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 |
| Eメール | [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"
]
}
]
} | |