Hide video duration

Hide video duration on video services to avoid spoilers

Hide video duration란 무엇입니까?

Hide video duration은(는) https://sokolov.cc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide video duration on video services to avoid spoilers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Hide video duration 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Hide video duration Hide video duration
ID jkgpcmmhejecphgdnihjfgmdpdkhgpke
공식 URL https://chromewebstore.google.com/detail/hide-video-duration/jkgpcmmhejecphgdnihjfgmdpdkhgpke
설명 Hide video duration on video services to avoid spoilers
파일 크기 1.78 MB
설치 횟수 990
현재 버전 1.0.2
최근 업데이트 2022-11-21
출시 날짜 2019-03-22
평점 4.20/5 총 15 개의 평점
개발자 https://sokolov.cc
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/denis-sokolov/hide-video-duration
도움말 페이지 URL https://github.com/denis-sokolov/hide-video-duration/issues
지원되는 언어 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
    }
}