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…

YouTube Markup란 무엇입니까?

YouTube Markup은(는) Umut Korkmaz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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…"입니다.

확장 프로그램 스크린샷

screenshot

YouTube Markup 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 YouTube Markup YouTube Markup
ID emhjhcepnjieabmcmioendnlpbbhlnbn
공식 URL https://chromewebstore.google.com/detail/youtube-markup/emhjhcepnjieabmcmioendnlpbbhlnbn
설명 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…
파일 크기 26.09 KB
설치 횟수 46
현재 버전 1.1.1
최근 업데이트 2023-03-02
출시 날짜 2022-09-06
평점 5.00/5 총 10 개의 평점
개발자 Umut Korkmaz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/umutkorkmaaz/youtube-marker
지원되는 언어 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\/*"
            ]
        }
    ]
}