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
官方網址 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"
            ]
        }
    ]
}