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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Clean Feed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
गोपनीयता नीति पृष्ठ 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"
            ]
        }
    ]
}