Clean Feed
Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.
Clean Feedとは何ですか?
Clean Feedはjoeyhuang.ioによって開発されたChromeの拡張機能で、その主な機能は「Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.」です。
拡張機能のスクリーンショット
Clean Feed拡張機能のCRXファイルをダウンロード
Clean Feed拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube. I made this extension for those who don't want to see short video and spent their time on more meaningful things on internet. I'm not collecting any personal information.
拡張機能の基本情報
名前 | Clean Feed |
ID | nfiabaaanhfanpfpbnicecphgbheibml |
公式URL | https://chromewebstore.google.com/detail/clean-feed/nfiabaaanhfanpfpbnicecphgbheibml |
説明 | Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube. |
ファイルサイズ | 42.56 KB |
インストール数 | 119 |
現在のバージョン | 1.0 |
最終更新日 | 2023-05-03 |
公開日 | 2023-05-02 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | joeyhuang.io |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://docs.google.com/document/d/1jWv9AVGttl0cUQ-rs87US6nH5JrF52CuJr2LR3dPxn8/edit?usp=sharing |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Clean Feed", "description": "Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.", "version": "1.0", "manifest_version": 3, "icons": { "16": "broom16.png", "32": "broom32.png", "48": "broom48.png", "128": "broom128.png" }, "action": { "default_popup": "clean-feed.html", "default_icon": "broom.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "css": [ "css\/fb.css" ] }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "css\/yt.css" ] } ] } |