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 - это расширение Chrome, разработанное joeyhuang.io, и его основная функция - "Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.".
Снимки экрана расширения
Скачать файл CRX расширения Clean Feed
Скачайте файлы расширений 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 |
Электронная почта | [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" ] } ] } |