CleanTube
YouTube with less clutter.
CleanTubeとは何ですか?
CleanTubeはelliotwaiteによって開発されたChromeの拡張機能で、その主な機能は「YouTube with less clutter.」です。
拡張機能のスクリーンショット
CleanTube拡張機能のCRXファイルをダウンロード
CleanTube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension hides the following YouTube elements: • The row of recommended videos that appear when a video is paused. • The wall of recommended videos that appear at the end of a video. • Channel watermark logos that appear in the bottom right of videos. • The "Watch later" and "Add to queue" icon buttons that appear over the top right of thumbnails when they are hovered over. This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/cleantube Thanks. Enjoy!
拡張機能の基本情報
名前 | CleanTube |
ID | kanfjhdeebkfgkbmnfknhejpadhlmiab |
公式URL | https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab |
説明 | YouTube with less clutter. |
ファイルサイズ | 8.85 KB |
インストール数 | 1,633 |
現在のバージョン | 0.4 |
最終更新日 | 2023-08-01 |
公開日 | 2021-06-29 |
評価 | 3.80/5 合計 5 レビュー |
開発者 | elliotwaite |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/elliotwaite/cleantube |
ヘルプページのURL | https://github.com/elliotwaite/cleantube |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CleanTube", "version": "0.4", "description": "YouTube with less clutter.", "author": "Elliot Waite", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Options", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*", "storage" ] } |