Clean Feed
Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.
Cos'è Clean Feed?
Clean Feed è un'estensione di Chrome sviluppata da joeyhuang.io, e la sua funzione principale è "Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Clean Feed
Scarica i file di estensione Clean Feed in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Clean Feed |
ID | nfiabaaanhfanpfpbnicecphgbheibml |
URL Ufficiale | https://chromewebstore.google.com/detail/clean-feed/nfiabaaanhfanpfpbnicecphgbheibml |
Descrizione | Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube. |
Dimensione del File | 42.56 KB |
Conteggio Installazioni | 119 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-05-03 |
Data di Pubblicazione | 2023-05-02 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | joeyhuang.io |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://docs.google.com/document/d/1jWv9AVGttl0cUQ-rs87US6nH5JrF52CuJr2LR3dPxn8/edit?usp=sharing |
Lingue Supportate | 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" ] } ] } |