ToggleVideoProgressBars

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

Was ist ToggleVideoProgressBars?

ToggleVideoProgressBars ist eine Chrome-Erweiterung, die von rossjgosling entwickelt wurde, und ihr Hauptmerkmal ist "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo".

Erweiterungsscreenshots

screenshot

ToggleVideoProgressBars-Erweiterungs-CRX-Datei herunterladen

Laden Sie ToggleVideoProgressBars-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name ToggleVideoProgressBars ToggleVideoProgressBars
ID hmenobknlandacpmndhikkcijdkpaccm
Offizielle URL https://chromewebstore.google.com/detail/togglevideoprogressbars/hmenobknlandacpmndhikkcijdkpaccm
Beschreibung Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo
Dateigröße 14.85 KB
Installationsanzahl 29
Aktuelle Version 1.0.5
Letztes Update 2022-03-30
Veröffentlichungsdatum 2020-06-01
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler rossjgosling
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/RossGosling-Github/ToggleVideoProgressBars
Hilfeseite URL https://github.com/RossGosling-Github/ToggleVideoProgressBars/issues
Unterstützte Sprachen 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"
    ]
}