FB Hide Recommendations and Reels

This extension hides Reels and recommendations on facebook

¿Qué es FB Hide Recommendations and Reels?

FB Hide Recommendations and Reels es una extensión de Chrome desarrollada por mrinc, y su función principal es "This extension hides Reels and recommendations on facebook".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión FB Hide Recommendations and Reels

Descarga archivos de extensión FB Hide Recommendations and Reels en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        *** 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                    

Información Básica de la Extensión

Nombre FB Hide Recommendations and Reels FB Hide Recommendations and Reels
ID mgfdapnedjhfmhcaglenpnjaocjpfplj
URL Oficial https://chrome.google.com/webstore/detail/fb-hide-recommendations-a/mgfdapnedjhfmhcaglenpnjaocjpfplj
Descripción This extension hides Reels and recommendations on facebook
Tamaño del Archivo 189 KB
Cantidad de Instalaciones 74
Versión Actual 1.26.27
Última Actualización 2023-06-07
Fecha de Publicación 2023-04-07
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador mrinc
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/mrinc/Facebook-Hide-Recommendations-and-Reels/
URL de la Página de Ayuda https://github.com/mrinc/Facebook-Hide-Recommendations-and-Reels/
URL de la Página de Política de Privacidad https://github.com/mrinc/ChromeWebStore/blob/main/README.md
Idiomas Soportados 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"
    }
}