Crunchyroll New Episode Highlighter

Highlights shows that have a new episode released today!

¿Qué es Crunchyroll New Episode Highlighter?

Crunchyroll New Episode Highlighter es una extensión de Chrome desarrollada por Addo, y su función principal es "Highlights shows that have a new episode released today!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Crunchyroll New Episode Highlighter

Descarga archivos de extensión Crunchyroll New Episode Highlighter 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

                        The Crunchyroll New Episode Highlighter does exactly what it says; it highlights shows that have a new episode released on the same day you view the page.

This is particularly useful if you follow several Crunchyroll simulcasts and want to catch up on all the new episodes of the day.

DISCLAIMER: This is a personal project I developed for myself and thought I would share with others. This is in no way affiliated with, nor endorsed by, Crunchyroll, Inc.                    

Información Básica de la Extensión

Nombre Crunchyroll New Episode Highlighter Crunchyroll New Episode Highlighter
ID ikoekpndblegcilcpppmpldnmfbcfpcm
URL Oficial https://chromewebstore.google.com/detail/crunchyroll-new-episode-h/ikoekpndblegcilcpppmpldnmfbcfpcm
Descripción Highlights shows that have a new episode released today!
Tamaño del Archivo 18.8 KB
Cantidad de Instalaciones 146
Versión Actual 0.3
Última Actualización 2018-08-21
Fecha de Publicación 2018-08-21
Calificación 3.50/5 Total de 2 Calificaciones
Desarrollador Addo
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crunchyroll New Episode Highlighter",
    "version": "0.3",
    "description": "Highlights shows that have a new episode released today!",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "storage",
        "*:\/\/*.crunchyroll.com\/*"
    ],
    "background": {
        "scripts": [
            ".\/src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/*"
            ],
            "js": [
                ".\/src\/highlight_new_episodes.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/icon16.png",
            "32": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        }
    }
}