YouTube Turbo Button

Sets the video playback speed to a specified amount.

Vad är YouTube Turbo Button?

YouTube Turbo Button är en Chrome-tillägg utvecklad av https://systemcluster.me, och dess huvudfunktion är "Sets the video playback speed to a specified amount.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner YouTube Turbo Button-förlängningens CRX-fil

Ladda ner YouTube Turbo Button-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

                        Adds a button that sets the playback speed of the current YouTube video to a configurable amount from 0.1x to 10x.                    

Grundläggande Information om Tillägg

Namn YouTube Turbo Button YouTube Turbo Button
ID bonbclphagmhlcpiahpimimkbmlamenc
Officiell webbadress https://chromewebstore.google.com/detail/youtube-turbo-button/bonbclphagmhlcpiahpimimkbmlamenc
Beskrivning Sets the video playback speed to a specified amount.
Filstorlek 31.05 KB
Antal Installationer 2,234
Aktuell Version 0.1.4
Senast Uppdaterad 2019-09-30
Publiceringsdatum 2019-09-29
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare https://systemcluster.me
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Systemcluster/youtube-turbo-button
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Turbo Button",
    "short_name": "YT Turbo Button",
    "description": "Sets the video playback speed to a specified amount.",
    "version": "0.1.4",
    "author": "Christian Sdunek",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "options_ui": {
        "page": "chrome\/content\/settings_inline.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "icons": {
        "48": "chrome\/skin\/icon48.png",
        "64": "chrome\/skin\/icon64.png",
        "128": "chrome\/skin\/icon128.png",
        "256": "chrome\/skin\/icon256.png"
    },
    "background": {
        "scripts": [
            "lib\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "48": "chrome\/skin\/icon48.png",
            "64": "chrome\/skin\/icon64.png",
            "128": "chrome\/skin\/icon128.png",
            "256": "chrome\/skin\/icon256.png"
        }
    },
    "permissions": [
        "*:\/\/*.youtube.com\/",
        "activeTab",
        "storage",
        "contextMenus"
    ]
}