YouTube Turbo Button

Sets the video playback speed to a specified amount.

Co to jest YouTube Turbo Button?

YouTube Turbo Button to rozszerzenie Chrome opracowane przez https://systemcluster.me, a jego główną funkcją jest „Sets the video playback speed to a specified amount.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia YouTube Turbo Button

Pobierz pliki rozszerzeń YouTube Turbo Button w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Turbo Button YouTube Turbo Button
ID bonbclphagmhlcpiahpimimkbmlamenc
Oficjalny URL https://chromewebstore.google.com/detail/youtube-turbo-button/bonbclphagmhlcpiahpimimkbmlamenc
Opis Sets the video playback speed to a specified amount.
Rozmiar pliku 31.05 KB
Liczba instalacji 2,234
Aktualna Wersja 0.1.4
Ostatnia Aktualizacja 2019-09-30
Data Publikacji 2019-09-29
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper https://systemcluster.me
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Systemcluster/youtube-turbo-button
Obsługiwane Języki 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"
    ]
}