YouTube Markup

You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…

Hvad er YouTube Markup?

YouTube Markup er en Chrome-udvidelse udviklet af Umut Korkmaz, og dens hovedfunktion er "You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…".

Udvidelsesskærmbilleder

screenshot

Download YouTube Markup-udvidelses-CRX-fil

Download YouTube Markup-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        You can use this tool to mark the parts of videos you watch on YouTube that are important to you.

For example, in an educational video, you can mark the minute where something you are interested in is located, so that you can quickly find what you are looking for when you look at the same educational video again.                    

Grundlæggende oplysninger om udvidelsen

Navn YouTube Markup YouTube Markup
ID emhjhcepnjieabmcmioendnlpbbhlnbn
Officiel URL https://chromewebstore.google.com/detail/youtube-markup/emhjhcepnjieabmcmioendnlpbbhlnbn
Beskrivelse You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…
Filstørrelse 26.09 KB
Antal Installationer 46
Nuværende Version 1.1.1
Senest Opdateret 2023-03-02
Udgivelsesdato 2022-09-06
Bedømmelse 5.00/5 Samlet 10 Bedømmelser
Udvikler Umut Korkmaz
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/umutkorkmaaz/youtube-marker
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Markup",
    "version": "1.1.1",
    "icons": {
        "16": ".\/assets\/icon\/youtube-markup-16x16.png",
        "48": ".\/assets\/icon\/youtube-markup-48x48.png",
        "128": ".\/assets\/icon\/youtube-markup-128x128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "service_worker": ".\/assets\/js\/background.min.js"
    },
    "action": {
        "default_title": "YouTube Markup",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                ".\/assets\/js\/content.min.js"
            ],
            "css": [
                ".\/assets\/css\/all.min.css"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ]
}