Feed Filter

Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…

¿Qué es Feed Filter?

Feed Filter es una extensión de Chrome desarrollada por Maker, y su función principal es "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Feed Filter

Descarga archivos de extensión Feed Filter 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

                        Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used to delete the post with specific keywords you want or it can show you a post with the keywords you want to see.                    

Información Básica de la Extensión

Nombre Feed Filter Feed Filter
ID ajhegeembcahfofkkhafolgpjgnimnib
URL Oficial https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib
Descripción Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…
Tamaño del Archivo 469 KB
Cantidad de Instalaciones 81
Versión Actual 1.0.1
Última Actualización 2021-05-11
Fecha de Publicación 2021-05-11
Desarrollador Maker
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://automatics.one/privacy
Idiomas Soportados en
manifest.json
{
    "name": "Feed Filter",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.1",
    "description": "",
    "manifest_version": 2,
    "incognito": "split",
    "icons": {
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": "icons\/128.png",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "persistent": true,
        "page": "background\/background.html"
    },
    "permissions": [
        "storage",
        "cookies",
        "notifications",
        "*:\/\/*.facebook.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.facebook.com\/"
            ],
            "js": [
                "scripts\/content_script.js",
                "scripts\/jquery.js"
            ]
        }
    ]
}