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.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Clean Feed

قم بتنزيل ملفات الامتداد Clean Feed بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}