YouTube next chapter button

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

Vad är YouTube next chapter button?

YouTube next chapter button är en Chrome-tillägg utvecklad av Alex Kozack, och dess huvudfunktion är "Adds a button to the YouTube player to fast-forward to the next section of the video".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube next chapter button-förlängningens CRX-fil

Ladda ner YouTube next chapter 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

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

Grundläggande Information om Tillägg

Namn YouTube next chapter button YouTube next chapter button
ID dnhblfjgbcgeoiidbbhephfmhamfkeak
Officiell webbadress https://chromewebstore.google.com/detail/youtube-next-chapter-butt/dnhblfjgbcgeoiidbbhephfmhamfkeak
Beskrivning Adds a button to the YouTube player to fast-forward to the next section of the video
Filstorlek 21.94 KB
Antal Installationer 54
Aktuell Version 2.0.2
Senast Uppdaterad 2023-10-23
Publiceringsdatum 2023-07-27
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Alex Kozack
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.buymeacoffee.com/kozack
Hjälpsida URL https://github.com/cawa-93/youtube-forward-timeline/
Stödda Språk 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"
            ]
        }
    ]
}