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" } } } |