ToggleVideoProgressBars

Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo

ToggleVideoProgressBars란 무엇입니까?

ToggleVideoProgressBars은(는) rossjgosling에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Provides a context menu button, as well as a standard browser icon button, that when pressed toggles the visibility of progress bars and displayed time for various video players!

Supports YouTube, Netflix, Amazon, and Vimeo

Firefox Version: https://addons.mozilla.org/en-GB/firefox/addon/togglevideoprogressbars/                    

확장 프로그램 기본 정보

이름 ToggleVideoProgressBars ToggleVideoProgressBars
ID hmenobknlandacpmndhikkcijdkpaccm
공식 URL https://chromewebstore.google.com/detail/togglevideoprogressbars/hmenobknlandacpmndhikkcijdkpaccm
설명 Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo
파일 크기 14.85 KB
설치 횟수 29
현재 버전 1.0.5
최근 업데이트 2022-03-30
출시 날짜 2020-06-01
평점 5.00/5 총 1 개의 평점
개발자 rossjgosling
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/RossGosling-Github/ToggleVideoProgressBars
도움말 페이지 URL https://github.com/RossGosling-Github/ToggleVideoProgressBars/issues
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ToggleVideoProgressBars",
    "version": "1.0.5",
    "description": "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo",
    "icons": {
        "16": "icon\/main.png",
        "32": "icon\/main.png",
        "64": "icon\/main.png",
        "128": "icon\/main.png"
    },
    "browser_action": {
        "default_icon": {
            "128": "icon\/visible.png"
        },
        "browser_style": true,
        "default_title": "ToggleVideoProgressBars Toggle"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "http*:\/\/*youtube.*",
                "http*:\/\/*youtu.be*",
                "http*:\/\/*netflix.*",
                "http*:\/\/*amazon.*",
                "http*:\/\/*vimeo.*"
            ],
            "js": [
                "src\/common.js",
                "src\/document.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/common.js",
            "src\/background.js"
        ]
    },
    "web_accessible_resources": [
        "style\/*.css"
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "",
        "tabs"
    ]
}