YouTube next chapter button

Adds a button to the YouTube player to fast-forward to the next section of the video

Co to jest YouTube next chapter button?

YouTube next chapter button to rozszerzenie Chrome opracowane przez Alex Kozack, a jego główną funkcją jest „Adds a button to the YouTube player to fast-forward to the next section of the video”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube next chapter button

Pobierz pliki rozszerzeń YouTube next chapter 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

                        This will work for all videos that have been labeled with chapters.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube next chapter button YouTube next chapter button
ID dnhblfjgbcgeoiidbbhephfmhamfkeak
Oficjalny URL https://chromewebstore.google.com/detail/youtube-next-chapter-butt/dnhblfjgbcgeoiidbbhephfmhamfkeak
Opis Adds a button to the YouTube player to fast-forward to the next section of the video
Rozmiar pliku 21.94 KB
Liczba instalacji 54
Aktualna Wersja 2.0.2
Ostatnia Aktualizacja 2023-10-23
Data Publikacji 2023-07-27
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Alex Kozack
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.buymeacoffee.com/kozack
Adres URL Strony Pomocy https://github.com/cawa-93/youtube-forward-timeline/
Obsługiwane Języki en,pl,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_APP_NAME__",
    "version": "2.0.2",
    "description": "__MSG_APP_DESCRIPTION__",
    "author": "Alex Kozack  (https:\/\/t.me\/kozack)",
    "homepage_url": "https:\/\/github.com\/cawa-93\/youtube-forward-timeline",
    "default_locale": "en",
    "icons": {
        "373": "YouTubeRewind.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{40ab1417-ef94-48d7-8726-6abe7d07b123}",
            "strict_min_version": "109.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}