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 Ramon Quitales, 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
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Crunchyroll Intro Skipper |
ID | enphflaephhmabkpchhgkhkfcblbhiip |
URL Chính Thức | https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip |
Mô tả | Allows intros to be skipped through a skip button on Crunchyroll |
Kích Thước Tệp | 15.16 KB |
Số Lần Cài Đặt | 1,310 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2021-04-06 |
Ngày Phát Hành | 2021-03-02 |
Đánh Giá | 3.57/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | Ramon Quitales |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/rquitales/crunchyroll-intro-skipper |
URL Trang Trợ Giúp | https://github.com/rquitales/crunchyroll-intro-skipper/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } |