Crunchyroll Intro Skipper
Allows intros to be skipped through a skip button on Crunchyroll
Crunchyroll Intro Skipper là gì?
Crunchyroll Intro Skipper là một tiện ích mở rộng Chrome được phát triển bởi Ian Hsiao, và tính năng chính của nó là "Allows intros to be skipped through a skip button on Crunchyroll".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Crunchyroll Intro Skipper
Tải xuống các tệp mở rộng Crunchyroll Intro Skipper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Crunchyroll Intro Skipper |
ID | hbglapgegjickodindimfgfmjmhhdlii |
URL Chính Thức | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii |
Mô tả | Allows intros to be skipped through a skip button on Crunchyroll |
Kích Thước Tệp | 29.51 KB |
Số Lần Cài Đặt | 1,091 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-08-05 |
Ngày Phát Hành | 2020-06-17 |
Đánh Giá | 2.81/5 Tổng số 16 Đánh Giá |
Nhà Phát Triển | Ian Hsiao |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/ianjjhsiao/skipintro |
Ngôn Ngữ Được Hỗ Trợ | 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" } |