Clean Feed
Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.
Co to jest Clean Feed?
Clean Feed to rozszerzenie Chrome opracowane przez joeyhuang.io, a jego główną funkcją jest „Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Clean Feed
Pobierz pliki rozszerzeń Clean Feed w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Clean Feed |
ID | nfiabaaanhfanpfpbnicecphgbheibml |
Oficjalny URL | https://chromewebstore.google.com/detail/clean-feed/nfiabaaanhfanpfpbnicecphgbheibml |
Opis | Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube. |
Rozmiar pliku | 42.56 KB |
Liczba instalacji | 119 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-05-03 |
Data Publikacji | 2023-05-02 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | joeyhuang.io |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://docs.google.com/document/d/1jWv9AVGttl0cUQ-rs87US6nH5JrF52CuJr2LR3dPxn8/edit?usp=sharing |
Obsługiwane Języki | 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" ] } ] } |