Youtime

Youtime will pick up all the time stamps present in the comments and description for you

Youtime란 무엇입니까?

Youtime은(는) Ashwath Vijayan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Youtime will pick up all the time stamps present in the comments and description for you"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Youtime is a timestamp with description extractor for Youtube videos. There are times when you are listening to a playlist and wish there was an easier way to skip to the next song rather than going through the description and comments, and finding that one comment that has the timestamps in it. Well, look no further, Youtime can do that for you! Just load up the comments and hit the extension, you will find all the timestamps that exist in the comment and the description section.

But wait up, its not just hour long playlists that Youtime helps, but also the short videos which has all the interesting sections mentioned in the comments by other users, you will be able to see that too.                    

확장 프로그램 기본 정보

이름 Youtime Youtime
ID ocaofghmcnmckbnlmgocfjemofblpgdk
공식 URL https://chromewebstore.google.com/detail/youtime/ocaofghmcnmckbnlmgocfjemofblpgdk
설명 Youtime will pick up all the time stamps present in the comments and description for you
파일 크기 49.5 KB
설치 횟수 22
현재 버전 1.0
최근 업데이트 2020-07-08
출시 날짜 2020-07-08
평점 5.00/5 총 4 개의 평점
개발자 Ashwath Vijayan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/AshwathVS
도움말 페이지 URL https://github.com/AshwathVS/youtime
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtime",
    "version": "1.0",
    "description": "Youtime will pick up all the time stamps present in the comments and description for you",
    "permissions": [
        "webNavigation",
        "https:\/\/www.youtube.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Youtime - Switch to Youtube to use the extension",
        "default_icon": {
            "16": "images\/icon-disabled-16.png",
            "32": "images\/icon-disabled-32.png"
        }
    },
    "web_accessible_resources": [
        "script.js"
    ],
    "manifest_version": 2
}