HideFlix

Allows you to hide or tint unwanted Netflix shows from your feed.

¿Qué es HideFlix?

HideFlix es una extensión de Chrome desarrollada por Rico, y su función principal es "Allows you to hide or tint unwanted Netflix shows from your feed.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión HideFlix

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

                        This extension lets you hide or tint any Netflix movies in your  feed.

Usage:
Two ways to add movies to the list to be tinted or hidden:
1) Right click on any movie when hovered over them and select "Hide/Tint this title"
2) Enable Quick Edit Mode on the Extension's option page

There are several other options in the extension's option page such as switching between Hide/Tint for your list of Netflix titles or clear your saved list.


Permission:
Context Menu: this is an alternate way to add a movie to the list in addition to edit mode.
Chrome Storage: this is used for remembering your list of movies to be tinted or hidden.                    

Información Básica de la Extensión

Nombre HideFlix HideFlix
ID dagapekicoclgkbodnjgddcaednhapnl
URL Oficial https://chromewebstore.google.com/detail/hideflix/dagapekicoclgkbodnjgddcaednhapnl
Descripción Allows you to hide or tint unwanted Netflix shows from your feed.
Tamaño del Archivo 17.89 KB
Cantidad de Instalaciones 76
Versión Actual 1.3.2
Última Actualización 2018-01-10
Fecha de Publicación 2018-01-10
Calificación 4.33/5 Total de 3 Calificaciones
Desarrollador Rico
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "HideFlix",
    "name": "HideFlix",
    "description": "Allows you to hide or tint unwanted Netflix shows from your feed.",
    "version": "1.3.2",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "css": [
                "dropdown.css"
            ],
            "js": [
                "Remove.js"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "popup.js"
        ]
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ]
}