Crunchyroll New Episode Highlighter
Highlights shows that have a new episode released today!
Was ist Crunchyroll New Episode Highlighter?
Crunchyroll New Episode Highlighter ist eine Chrome-Erweiterung, die von Addo entwickelt wurde, und ihr Hauptmerkmal ist "Highlights shows that have a new episode released today!".
Erweiterungsscreenshots
Crunchyroll New Episode Highlighter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Crunchyroll New Episode Highlighter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Crunchyroll New Episode Highlighter |
ID | ikoekpndblegcilcpppmpldnmfbcfpcm |
Offizielle URL | https://chromewebstore.google.com/detail/crunchyroll-new-episode-h/ikoekpndblegcilcpppmpldnmfbcfpcm |
Beschreibung | Highlights shows that have a new episode released today! |
Dateigröße | 18.8 KB |
Installationsanzahl | 146 |
Aktuelle Version | 0.3 |
Letztes Update | 2018-08-21 |
Veröffentlichungsdatum | 2018-08-21 |
Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
Entwickler | Addo |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } } |