Crunchyroll New Episode Highlighter
Highlights shows that have a new episode released today!
Crunchyroll New Episode Highlighter là gì?
Crunchyroll New Episode Highlighter là một tiện ích mở rộng Chrome được phát triển bởi Addo, và tính năng chính của nó là "Highlights shows that have a new episode released today!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Crunchyroll New Episode Highlighter
Tải xuống các tệp mở rộng Crunchyroll New Episode Highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Crunchyroll New Episode Highlighter |
ID | ikoekpndblegcilcpppmpldnmfbcfpcm |
URL Chính Thức | https://chromewebstore.google.com/detail/crunchyroll-new-episode-h/ikoekpndblegcilcpppmpldnmfbcfpcm |
Mô tả | Highlights shows that have a new episode released today! |
Kích Thước Tệp | 18.8 KB |
Số Lần Cài Đặt | 146 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2018-08-21 |
Ngày Phát Hành | 2018-08-21 |
Đánh Giá | 3.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Addo |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |