Twitch VOD Unspoiler

Removes spoilers from Twitch.tv VODs.

Twitch VOD Unspoiler란 무엇입니까?

Twitch VOD Unspoiler은(는) Kyle Coburn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes spoilers from Twitch.tv VODs."입니다.

확장 프로그램 스크린샷

screenshot

Twitch VOD Unspoiler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ・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": []
}