Clean Feed
Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.
Apa itu Clean Feed?
Clean Feed adalah ekstensi Chrome yang dikembangkan oleh joeyhuang.io, dan fitur utamanya adalah "Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Clean Feed
Unduh file ekstensi Clean Feed dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Clean Feed |
ID | nfiabaaanhfanpfpbnicecphgbheibml |
URL Resmi | https://chromewebstore.google.com/detail/clean-feed/nfiabaaanhfanpfpbnicecphgbheibml |
Deskripsi | Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube. |
Ukuran File | 42.56 KB |
Jumlah Instalasi | 119 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2023-05-03 |
Tanggal Publikasi | 2023-05-02 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | joeyhuang.io |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://docs.google.com/document/d/1jWv9AVGttl0cUQ-rs87US6nH5JrF52CuJr2LR3dPxn8/edit?usp=sharing |
Bahasa yang Didukung | 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" ] } ] } |