YouTube DeSpoiler

Hides total video length and some other information on YouTube.

YouTube DeSpoiler là gì?

YouTube DeSpoiler là một tiện ích mở rộng Chrome được phát triển bởi santaworkshopdev, và tính năng chính của nó là "Hides total video length and some other information on YouTube.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube DeSpoiler

Tải xuống các tệp mở rộng YouTube DeSpoiler 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 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube DeSpoiler YouTube DeSpoiler
ID fmihhkhicphlbbfdclmmjdohegbplgmo
URL Chính Thức https://chromewebstore.google.com/detail/youtube-despoiler/fmihhkhicphlbbfdclmmjdohegbplgmo
Mô tả Hides total video length and some other information on YouTube.
Kích Thước Tệp 33.07 KB
Số Lần Cài Đặt 74
Phiên Bản Hiện Tại 0.4.2
Cập Nhật Lần Cuối 2021-05-26
Ngày Phát Hành 2020-10-30
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển santaworkshopdev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}