Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
Focused Youtubeとは何ですか?
Focused Youtubeはmakaroni4によって開発されたChromeの拡張機能で、その主な機能は「Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube」です。
拡張機能のスクリーンショット
Focused Youtube拡張機能のCRXファイルをダウンロード
Focused Youtube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages. Extension requires access to Youtube website to change its outlook. Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example). Enjoy <3 Important: the extension doesn't collect any data about Youtube usage.
拡張機能の基本情報
名前 | Focused Youtube |
ID | nfghbmabdoakhobmimnjkamfdnpfammn |
公式URL | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
説明 | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
ファイルサイズ | 170 KB |
インストール数 | 4,232 |
現在のバージョン | 1.12 |
最終更新日 | 2024-01-27 |
公開日 | 2019-01-06 |
評価 | 4.88/5 合計 72 レビュー |
開発者 | makaroni4 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/makaroni4/focused_youtube |
ヘルプページのURL | https://github.com/makaroni4/focused_youtube/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Focused Youtube", "description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube", "version": "1.12", "author": "Anatoli Makarevich", "icons": { "128": "extension_icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "js": [ "assets\/extension.js" ], "css": [ "assets\/extension.css" ], "run_at": "document_end", "all_frames": true } ], "action": { "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "fonts\/Roboto-Regular.ttf", "assets\/popup.js", "assets\/popup.css", "images\/search_icon.svg", "images\/youtube_logo.png", "images\/search_icon_dark.svg", "images\/youtube_logo_dark.png", "images\/extension_icon.png" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ] } ] } |