Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

什麼是Crunchyroll Intro Skipper?

Crunchyroll Intro Skipper是由Ramon Quitales開發的Chrome擴展程式,該擴展的主要功能是“Allows intros to be skipped through a skip button on Crunchyroll”。

擴展截圖

screenshot

下載Crunchyroll Intro Skipper擴展crx文件

下載Crunchyroll Intro Skipper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension parses through the episode comments to determine if there are any intro timestamps posted. If there are no valid timestamps within the comments, it will fallback to using Crunchyroll's ad locations to determine the best position.

To use this extension, a `SKIP INTRO` button is overlaid onto the Crunchyroll video player which you can click to skip the episode intro. The button also indicates how it got the timestamp (either through someone's comment on the page, or through ad locations).                    

擴展基本資訊

名稱 Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID enphflaephhmabkpchhgkhkfcblbhiip
官方網址 https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip
簡介 Allows intros to be skipped through a skip button on Crunchyroll
檔案大小 15.16 KB
安裝次數 1,310
目前版本 0.2.1
更新時間 2021-04-06
上架時間 2021-03-02
評分 3.57/5 共 14 次評分
開發者 Ramon Quitales
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/rquitales/crunchyroll-intro-skipper
說明頁面URL https://github.com/rquitales/crunchyroll-intro-skipper/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/content_script.js"
            ],
            "matches": [
                "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*"
            ]
        }
    ],
    "description": "Allows intros to be skipped through a skip button on Crunchyroll",
    "icons": {
        "16": "assets\/images\/icon.png",
        "128": "assets\/images\/large_icon.png"
    },
    "background": {
        "scripts": [
            "js\/background_script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "name": "Crunchyroll Intro Skipper",
    "author": "Ramon Quitales",
    "permissions": [
        "https:\/\/www.crunchyroll.com\/*"
    ],
    "version": "0.2.1"
}