Crunchyroll New Episode Highlighter
Highlights shows that have a new episode released today!
什么是Crunchyroll New Episode Highlighter?
Crunchyroll New Episode Highlighter是由Addo开发的Chrome扩展程序,该扩展的主要功能是“Highlights shows that have a new episode released today!”。
扩展截图
下载Crunchyroll New Episode Highlighter扩展crx文件
下载Crunchyroll New Episode Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Crunchyroll New Episode Highlighter |
ID | ikoekpndblegcilcpppmpldnmfbcfpcm |
官方URL | https://chromewebstore.google.com/detail/crunchyroll-new-episode-h/ikoekpndblegcilcpppmpldnmfbcfpcm |
简介 | Highlights shows that have a new episode released today! |
文件大小 | 18.8 KB |
安装次数 | 146 |
当前版本 | 0.3 |
更新时间 | 2018-08-21 |
上架时间 | 2018-08-21 |
评分 | 3.50/5 共2次评分 |
开发者 | Addo |
付费类型 | free |
支持的语言 | 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" } } } |