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!”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Crunchyroll New Episode Highlighter
ID ikoekpndblegcilcpppmpldnmfbcfpcm
官方網址 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"
        }
    }
}