Spoiler-free IMDb

Hide IMDb spoilers

¿Qué es Spoiler-free IMDb?

Spoiler-free IMDb es una extensión de Chrome desarrollada por Jonathan, y su función principal es "Hide IMDb spoilers".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Spoiler-free IMDb

Descarga archivos de extensión Spoiler-free IMDb 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

                        Sick of having IMDb tell you exactly how many episodes an actor was in?

If that weren't bad enough, IMDb likes to throw the top rated episode summaries in your face, when you go to a show's page. If you aren't caught up on a show, it is very easy to having something spoiled for you.

Spoiler-free IMDb will make sure you don't see the episode count for anybody on the show, whether you're looking at a TV show page, or the actor's page. We also hide the top rated episode summaries completely.

If you want to see spoilers on a specific page, just click on the icon in the URL bar, and click "Display spoilers for this page" and the page will refresh, and display all details, including any potential spoilers.                    

Información Básica de la Extensión

Nombre Spoiler-free IMDb Spoiler-free IMDb
ID gfdelcngpnloeknplgbinlafdjffknni
URL Oficial https://chromewebstore.google.com/detail/spoiler-free-imdb/gfdelcngpnloeknplgbinlafdjffknni
Descripción Hide IMDb spoilers
Tamaño del Archivo 13.29 KB
Cantidad de Instalaciones 47
Versión Actual 1.0
Última Actualización 2016-02-26
Fecha de Publicación 2016-02-26
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Jonathan
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spoiler-free IMDb",
    "description": "Hide IMDb spoilers",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "assets\/icon_16.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "assets\/icon_16.png",
            "48": "assets\/icon_48.png"
        },
        "default_title": "Spoiler-free IMDb",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/*"
            ],
            "js": [
                "remove-spoilers.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "storage",
        "http:\/\/www.imdb.com\/*"
    ]
}