FB Hide Recommendations and Reels

This extension hides Reels and recommendations on facebook

FB Hide Recommendations and Reels란 무엇입니까?

FB Hide Recommendations and Reels은(는) mrinc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension hides Reels and recommendations on facebook"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

FB Hide Recommendations and Reels 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        *** NO AFFILIATION WITH FACEBOOK/META
Previous published extension was removed from the chrome store due to a trademark violation.
This is the new extension published with relevent changes.
----

This extension looks for certain keys in Facebooks feed and hides elements that contain 'Reels and short videos' and 'Suggested for you'.

It places a small banner in the items place to let you know what was hidden.

This extensions primary purpose it to clean up your feed from reels and suggestions so you're not bombarded with irrelevant 'fluff' in your feed.

For people that use Facebook for business purposes, this will minimize the amount of fluff you see and just clean things up a bit more so you can get back to what you need to do rather than all the distractions. 


**********************
If your language is not English, the extension will most likely not work, log an issue with your language and we can look at adding it - https://github.com/mrinc/Facebook-Hide-Recommendations-and-Reels/issues                    

확장 프로그램 기본 정보

이름 FB Hide Recommendations and Reels FB Hide Recommendations and Reels
ID mgfdapnedjhfmhcaglenpnjaocjpfplj
공식 URL https://chrome.google.com/webstore/detail/fb-hide-recommendations-a/mgfdapnedjhfmhcaglenpnjaocjpfplj
설명 This extension hides Reels and recommendations on facebook
파일 크기 189 KB
설치 횟수 74
현재 버전 1.26.27
최근 업데이트 2023-06-07
출시 날짜 2023-04-07
평점 5.00/5 총 2 개의 평점
개발자 mrinc
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mrinc/Facebook-Hide-Recommendations-and-Reels/
도움말 페이지 URL https://github.com/mrinc/Facebook-Hide-Recommendations-and-Reels/
개인정보 보호 정책 페이지 URL https://github.com/mrinc/ChromeWebStore/blob/main/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FB Hide Recommendations and Reels",
    "version": "1.26.27",
    "description": "This extension hides Reels and recommendations on facebook",
    "background": [
        {
            "scripts": [
                "background.js"
            ],
            "persistent": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "logo-16x16.png",
        "24": "logo-24x24.png",
        "32": "logo-32x32.png",
        "48": "logo-48x48.png",
        "64": "logo-64x64.png",
        "96": "logo-96x96.png",
        "128": "logo-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.facebook.com\/*",
                "https:\/\/chrome-facebook-hide-ads-and-reels.mrincops.net\/diag\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "logo-16x16.png",
            "24": "logo-24x24.png",
            "32": "logo-32x32.png",
            "48": "logo-48x48.png",
            "64": "logo-64x64.png",
            "96": "logo-96x96.png",
            "128": "logo-128x128.png"
        },
        "default_title": "Options",
        "default_popup": "popup.html"
    }
}