Crunchyroll New Episode Highlighter

Highlights shows that have a new episode released today!

Co to jest Crunchyroll New Episode Highlighter?

Crunchyroll New Episode Highlighter to rozszerzenie Chrome opracowane przez Addo, a jego główną funkcją jest „Highlights shows that have a new episode released today!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Crunchyroll New Episode Highlighter

Pobierz pliki rozszerzeń Crunchyroll New Episode Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Crunchyroll New Episode Highlighter Crunchyroll New Episode Highlighter
ID ikoekpndblegcilcpppmpldnmfbcfpcm
Oficjalny URL https://chromewebstore.google.com/detail/crunchyroll-new-episode-h/ikoekpndblegcilcpppmpldnmfbcfpcm
Opis Highlights shows that have a new episode released today!
Rozmiar pliku 18.8 KB
Liczba instalacji 146
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2018-08-21
Data Publikacji 2018-08-21
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper Addo
Typ Płatności free
Obsługiwane Języki 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"
        }
    }
}