Twitch VOD Unspoiler
Removes spoilers from Twitch.tv VODs.
什麼是Twitch VOD Unspoiler?
Twitch VOD Unspoiler是由Kyle Coburn開發的Chrome擴展程式,該擴展的主要功能是“Removes spoilers from Twitch.tv VODs.”。
擴展截圖
下載Twitch VOD Unspoiler擴展crx文件
下載Twitch VOD Unspoiler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
・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.) 擴展基本資訊
| 名稱 | |
| ID | kjeacdeffkhbcaoobelkgnnlfpaifaoc |
| 官方網址 | https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc |
| 簡介 | Removes spoilers from Twitch.tv VODs. |
| 檔案大小 | 8.68 KB |
| 安裝次數 | 784 |
| 目前版本 | 2.5.6 |
| 更新時間 | 2023-11-06 |
| 上架時間 | 2020-06-06 |
| 評分 | 4.94/5 共 17 次評分 |
| 開發者 | Kyle Coburn |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/ky-is/twitch-vod-unspoiler |
| 說明頁面URL | https://github.com/ky-is/twitch-vod-unspoiler/issues |
| 支援的語言 | 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": []
} | |