Twitch VOD Unspoiler

Removes spoilers from Twitch.tv VODs.

Twitch VOD Unspoilerคืออะไร?

Twitch VOD Unspoiler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kyle Coburn และคุณลักษณะหลักของมันคือ "Removes spoilers from Twitch.tv VODs."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch VOD Unspoiler

ดาวน์โหลดไฟล์ส่วนขยาย 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.)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitch VOD Unspoiler Twitch VOD Unspoiler
ID kjeacdeffkhbcaoobelkgnnlfpaifaoc
URL อย่างเป็นทางการ 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": []
}