Crunchyroll New Episode Highlighter

Highlights shows that have a new episode released today!

Qu'est-ce que Crunchyroll New Episode Highlighter ?

Crunchyroll New Episode Highlighter est une extension Chrome développée par Addo, et sa fonction principale est "Highlights shows that have a new episode released today!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Crunchyroll New Episode Highlighter

Téléchargez les fichiers d'extension Crunchyroll New Episode Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Crunchyroll New Episode Highlighter Crunchyroll New Episode Highlighter
ID ikoekpndblegcilcpppmpldnmfbcfpcm
URL Officiel https://chromewebstore.google.com/detail/crunchyroll-new-episode-h/ikoekpndblegcilcpppmpldnmfbcfpcm
Description Highlights shows that have a new episode released today!
Taille du Fichier 18.8 KB
Nombre d'Installations 146
Version Actuelle 0.3
Dernière Mise à Jour 2018-08-21
Date de Publication 2018-08-21
Évaluation 3.50/5 Total 2 Évaluations
Développeur Addo
Type de Paiement free
Langues Prises en Charge 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"
        }
    }
}