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开发的Chrome扩展程序,该扩展的主要功能是“Hide Reels, Shorts to save your brain. This extension will use CSS to hide Reels from FaceBook, and Shorts from YouTube.”。

扩展截图

screenshot
screenshot

下载Clean Feed扩展crx文件

下载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 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"
            ]
        }
    ]
}