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!".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Crunchyroll New Episode Highlighter

قم بتنزيل ملفات الامتداد Crunchyroll New Episode Highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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