Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
什麼是Crunchyroll Intro Skipper?
Crunchyroll Intro Skipper是由Ian Hsiao開發的Chrome擴展程式,該擴展的主要功能是“Allows intros to be skipped through a skip button on Crunchyroll”。
擴展截圖
下載Crunchyroll Intro Skipper擴展crx文件
下載Crunchyroll Intro Skipper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Skips anime intros with a single button. Finds when the intro ends by skipping to the timestamp of the first advertisement. *Update* it seems like crunchyroll has changed the location of their advertisements from right after the intro to somewhere in the middle so it's likely the extension will skip to somewhere random.
擴展基本資訊
名稱 | Crunchyroll Intro Skipper |
ID | hbglapgegjickodindimfgfmjmhhdlii |
官方網址 | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii |
簡介 | Allows intros to be skipped through a skip button on Crunchyroll |
檔案大小 | 29.51 KB |
安裝次數 | 1,091 |
目前版本 | 1.0 |
更新時間 | 2020-08-05 |
上架時間 | 2020-06-17 |
評分 | 2.81/5 共 16 次評分 |
開發者 | Ian Hsiao |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://github.com/ianjjhsiao/skipintro |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "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": "icon.png", "128": "Big_icon.png" }, "background": { "scripts": [ "background_script.js" ], "persistent": false }, "manifest_version": 2, "name": "Crunchyroll Intro Skipper", "permissions": [ "https:\/\/www.crunchyroll.com\/*" ], "version": "1.0" } |