Crunchyroll Timestamp Helper
This extension will allow you to click on timestamps from chat and move to the specified time in the video
Crunchyroll Timestamp Helper là gì?
Crunchyroll Timestamp Helper là một tiện ích mở rộng Chrome được phát triển bởi Mario, và tính năng chính của nó là "This extension will allow you to click on timestamps from chat and move to the specified time in the video".
Ả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 Timestamp Helper
Tải xuống các tệp mở rộng Crunchyroll Timestamp Helper 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
Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Crunchyroll Timestamp Helper |
ID | pamhedcogfnafpdblkogpeediihohjob |
URL Chính Thức | https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob |
Mô tả | This extension will allow you to click on timestamps from chat and move to the specified time in the video |
Kích Thước Tệp | 136 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2019-10-20 |
Ngày Phát Hành | 2019-10-20 |
Nhà Phát Triển | Mario |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Crunchyroll Timestamp Helper", "description": "This extension will allow you to click on timestamps from chat and move to the specified time in the video", "version": "1.0.3", "author": "Mathew Anjos", "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "images\/icon.png" }, "icons": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "permissions": [ "activeTab", "*:\/\/*.crunchyroll.com\/*" ] } |