Playback Controls

Skip YouTube ads / Control video playbacks using keyboard shortcuts

Vad är Playback Controls?

Playback Controls är en Chrome-tillägg utvecklad av ankur1812vu, och dess huvudfunktion är "Skip YouTube ads / Control video playbacks using keyboard shortcuts".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Playback Controls-förlängningens CRX-fil

Ladda ner Playback Controls-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension allows users to control all video playbacks on the internet.

Use the keyboard shortcuts to speed up/down the videos, increase/decrease volume, fast-forward or rewind, or play/pause/end the videos.

The extension can also skip YouTube/ Facebook  ads.

The shortcuts can be viewed from the popup-menu once the plugin has been installed (as shown in the screenshots).                    

Grundläggande Information om Tillägg

Namn Playback Controls Playback Controls
ID nfehebbfejljgpcklfmklfheidkcongg
Officiell webbadress https://chromewebstore.google.com/detail/playback-controls/nfehebbfejljgpcklfmklfheidkcongg
Beskrivning Skip YouTube ads / Control video playbacks using keyboard shortcuts
Filstorlek 40.57 KB
Antal Installationer 82
Aktuell Version 2.0.0
Senast Uppdaterad 2022-04-11
Publiceringsdatum 2021-12-31
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare ankur1812vu
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Playback Controls",
    "description": "Skip YouTube ads \/ Control video playbacks using keyboard shortcuts",
    "version": "2.0.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "contentScript_playback_ctrls.css"
            ],
            "js": [
                "contentScript_playback_ctrls.js"
            ],
            "exclude_matches": []
        }
    ],
    "permissions": [],
    "action": {
        "default_popup": "popup_playback_ctrls.html",
        "default_icon": {
            "16": "\/images\/playback3.png",
            "32": "\/images\/playback3.png",
            "48": "\/images\/playback3.png",
            "128": "\/images\/playback3.png"
        }
    },
    "icons": {
        "16": "\/images\/playback3.png",
        "32": "\/images\/playback3.png",
        "48": "\/images\/playback3.png",
        "128": "\/images\/playback3.png"
    }
}