YouTube DeSpoiler

Hides total video length and some other information on YouTube.

YouTube DeSpoiler란 무엇입니까?

YouTube DeSpoiler은(는) santaworkshopdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides total video length and some other information on YouTube."입니다.

확장 프로그램 스크린샷

screenshot

YouTube DeSpoiler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hides total video length and some other information on YouTube.

This extension is mainly intended for eSports VODs, where the total length of the match, or the time remaining, can be a spoiler by itself.

Features:
- Hides total video length in main player, search results, and suggestions.
- Hides progress bar in main player and search results.
- Hides suggestion titles and thumbnails (hover to reveal).
- Since seeking by progress bar is no longer possible, adds seek buttons to the main player.
  > Note that you can still use YouTube's ←, →, J and L shortcuts as normal.
- Toggle the extension by clicking the extension icon.
- Toggle the progress bar for current video only by clicking the hourglass button in main player.                    

확장 프로그램 기본 정보

이름 YouTube DeSpoiler YouTube DeSpoiler
ID fmihhkhicphlbbfdclmmjdohegbplgmo
공식 URL https://chromewebstore.google.com/detail/youtube-despoiler/fmihhkhicphlbbfdclmmjdohegbplgmo
설명 Hides total video length and some other information on YouTube.
파일 크기 33.07 KB
설치 횟수 74
현재 버전 0.4.2
최근 업데이트 2021-05-26
출시 날짜 2020-10-30
평점 4.67/5 총 3 개의 평점
개발자 santaworkshopdev
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube DeSpoiler",
    "description": "Hides total video length and some other information on YouTube.",
    "version": "0.4.2",
    "icons": {
        "16": "favicon\/on\/favicon-16x16.png",
        "32": "favicon\/on\/favicon-32x32.png",
        "128": "favicon\/on\/favicon-128x128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "despoiler.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "YouTube DeSpoiler"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "despoiler-site.css",
        "despoiler-video.css"
    ]
}