YouTube Timestamps

YouTube Timestamps is a plugin to track timestamps on any video which contains them.

YouTube Timestamps란 무엇입니까?

YouTube Timestamps은(는) tylerjdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "YouTube Timestamps is a plugin to track timestamps on any video which contains them."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        YouTube Timestamps is a plugin to track timestamps on any video which contains them.

On YouTube, a content creator can add timestamps to either the description, or within the comments - which any user is free and able to do if the comment section permits. This plugin will grab those timestamps and display them in an easy to read format. The current timestamp selected will be highlighted, and marked as a heading under the title of the video.

* Features
  - Automatically selects timestamp if present.
  - Allows user to skip to previous/next track.
  - Plenty of customization.  
  - Accessible and easy to use.
  - Open Source!

* Notes

This is an ongoing plugin, which will gradually receive updates. For any issues/bugs found, or possible enhancements to be added, please open up a ticket via GitHub; 

https://github.com/TylerJDev/YouTube-Timestamps

* Changelog
To see future changes, check out the changelog @ https://github.com/TylerJDev/YouTube-Timestamps/blob/master/CHANGELOG.md

 - 1.0.4 Added initial setting "color" to handleYoutube.js, fixed issue with next/previous buttons
 - 1.0.3 Removed logs, minor bug fixes
 - 1.0.2 Fixed issue with settings
 - 1.0.1 Minor bug fixes, updated icon.

* Other
This plugin is not affiliated with YouTube. It will always be available for free and open source.                    

확장 프로그램 기본 정보

이름 YouTube Timestamps YouTube Timestamps
ID mopckogdjleiljpnmmafmlieekoenhbe
공식 URL https://chrome.google.com/webstore/detail/youtube-timestamps/mopckogdjleiljpnmmafmlieekoenhbe
설명 YouTube Timestamps is a plugin to track timestamps on any video which contains them.
파일 크기 38.88 KB
설치 횟수 324
현재 버전 1.0.6
최근 업데이트 2020-04-28
출시 날짜 2020-04-28
평점 2.86/5 총 7 개의 평점
개발자 tylerjdev
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/TylerJDev/YouTube-Timestamps
도움말 페이지 URL https://github.com/TylerJDev/YouTube-Timestamps/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Timestamps",
    "version": "1.0.6",
    "description": "YouTube Timestamps is a plugin to track timestamps on any video which contains them.",
    "permissions": [
        "*:\/\/*.youtube.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/handleYoutube.js"
            ],
            "css": [
                "css\/yt_timestamps.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_popup": "html\/interface.html"
    },
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}