Hide video duration

Hide video duration on video services to avoid spoilers

What is Hide video duration?

Hide video duration is a Chrome extension developed by https://sokolov.cc, and its main feature is "Hide video duration on video services to avoid spoilers".

Extension Screenshots

screenshot
screenshot
screenshot

Download Hide video duration Extension CRX File

Download Hide video duration extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Hide the duration of YouTube videos to prevent spoiling the ending. In particular, a Let’s Play video of a rogue-like coming to an end suggests the player will make a crucial mistake soon.

With this extension a duration can be hidden at the start of a video manually, and also all videos matching a particular title can have their durations hidden automatically.                    

Extension Basic Information

Name Hide video duration Hide video duration
ID jkgpcmmhejecphgdnihjfgmdpdkhgpke
Official URL https://chromewebstore.google.com/detail/hide-video-duration/jkgpcmmhejecphgdnihjfgmdpdkhgpke
Description Hide video duration on video services to avoid spoilers
File Size 1.78 MB
Installation Count 990
Current Version 1.0.2
Last Updated 2022-11-21
Publish Date 2019-03-22
Rating 4.20/5 Total 15 Ratings
Developer https://sokolov.cc
Email [email protected]
Payment Type free
Extension Website https://github.com/denis-sokolov/hide-video-duration
Help Page URL https://github.com/denis-sokolov/hide-video-duration/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "version": "1.0.2",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "src\/icons\/300.png",
        "48": "src\/icons\/300.png",
        "128": "src\/icons\/300.png"
    },
    "background": {
        "scripts": [
            "src\/page-action-rules.js",
            "src\/hide-automatically.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "src\/toolbar\/popup.html"
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "optional_permissions": [
        "http:\/\/www.youtube.com\/",
        "https:\/\/www.youtube.com\/"
    ],
    "options_ui": {
        "page": "src\/options\/index.html",
        "chrome_style": true
    }
}