Crunchyroll New Episode Highlighter
Highlights shows that have a new episode released today!
Crunchyroll New Episode Highlighterคืออะไร?
Crunchyroll New Episode Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Addo และคุณลักษณะหลักของมันคือ "Highlights shows that have a new episode released today!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Crunchyroll New Episode Highlighter
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } } |