Clean Feed
Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.
What is Clean Feed?
Clean Feed is a Chrome extension developed by joeyhuang.io, and its main feature is "Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.".
Extension Screenshots
Download Clean Feed Extension CRX File
Download Clean Feed extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Clean Feed |
ID | nfiabaaanhfanpfpbnicecphgbheibml |
Official URL | https://chromewebstore.google.com/detail/clean-feed/nfiabaaanhfanpfpbnicecphgbheibml |
Description | Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube. |
File Size | 42.56 KB |
Installation Count | 119 |
Current Version | 1.0 |
Last Updated | 2023-05-03 |
Publish Date | 2023-05-02 |
Rating | 5.00/5 Total 2 Ratings |
Developer | joeyhuang.io |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://docs.google.com/document/d/1jWv9AVGttl0cUQ-rs87US6nH5JrF52CuJr2LR3dPxn8/edit?usp=sharing |
Supported Languages | 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" ] } ] } |