Crunchyroll New Episode Highlighter

Highlights shows that have a new episode released today!

Wat is Crunchyroll New Episode Highlighter?

Crunchyroll New Episode Highlighter is een Chrome-extensie ontwikkeld door Addo, en de belangrijkste functie is "Highlights shows that have a new episode released today!".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Crunchyroll New Episode Highlighter

Download Crunchyroll New Episode Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Crunchyroll New Episode Highlighter Crunchyroll New Episode Highlighter
ID ikoekpndblegcilcpppmpldnmfbcfpcm
Officiële URL https://chromewebstore.google.com/detail/crunchyroll-new-episode-h/ikoekpndblegcilcpppmpldnmfbcfpcm
Beschrijving Highlights shows that have a new episode released today!
Bestandsgrootte 18.8 KB
Aantal Installaties 146
Huidige Versie 0.3
Laatst Bijgewerkt 2018-08-21
Publicatiedatum 2018-08-21
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar Addo
Betalingswijze free
Ondersteunde Talen 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"
        }
    }
}