Twitch VOD Unspoiler
Removes spoilers from Twitch.tv VODs.
Twitch VOD Unspoiler là gì?
Twitch VOD Unspoiler là một tiện ích mở rộng Chrome được phát triển bởi Kyle Coburn, và tính năng chính của nó là "Removes spoilers from Twitch.tv VODs.".
Ả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 Twitch VOD Unspoiler
Tải xuống các tệp mở rộng Twitch VOD Unspoiler 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
・Hides references to VOD durations on videos/playback pages, and replaces the scrubber with relative time controls (e.g. -30 seconds/+15 minutes) ・Click the extension's icon to toggle spoilers on a per-channel basis This extension collects no data, and respects your privacy and battery life. Open source at: https://github.com/ky-is/twitch-vod-unspoiler (Note you can check the video's current time by clicking the playback Settings icon.)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitch VOD Unspoiler |
ID | kjeacdeffkhbcaoobelkgnnlfpaifaoc |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc |
Mô tả | Removes spoilers from Twitch.tv VODs. |
Kích Thước Tệp | 8.68 KB |
Số Lần Cài Đặt | 784 |
Phiên Bản Hiện Tại | 2.5.6 |
Cập Nhật Lần Cuối | 2023-11-06 |
Ngày Phát Hành | 2020-06-06 |
Đánh Giá | 4.94/5 Tổng số 17 Đánh Giá |
Nhà Phát Triển | Kyle Coburn |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ky-is/twitch-vod-unspoiler |
URL Trang Trợ Giúp | https://github.com/ky-is/twitch-vod-unspoiler/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch VOD Unspoiler", "version": "2.5.6", "description": "Removes spoilers from Twitch.tv VODs.", "browser_action": { "default_icon": "images\/icon-off.png" }, "icons": { "128": "images\/icon-on.png" }, "background": { "persistent": false, "scripts": [ "generated\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.twitch.tv\/*", "*:\/\/twitch.tv\/*" ], "css": [ "generated\/inject.css" ], "js": [ "generated\/inject.js" ], "run_at": "document_idle" } ], "permissions": [] } |