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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}