Youtube Timestamp

Save youtube videos with exact timestamps for later.

Youtube Timestamp란 무엇입니까?

Youtube Timestamp은(는) kirill17910에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save youtube videos with exact timestamps for later."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This is a small extension for saving YouTube videos with exact timestamp. You can find all your saved videos, by clicking on the extension. If you save a video that is already on your saved list, only the timestamp will update. You can right click on saved videos to delete them.

This is an open source project, and all source code can be found on GitHub. 
https://github.com/kotikkir9/Youtube 

Changes:
27/12/2022 - Added new animated delete button.                    

확장 프로그램 기본 정보

이름 Youtube Timestamp Youtube Timestamp
ID ciognandfojfcelnokkgaapgmafciekl
공식 URL https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl
설명 Save youtube videos with exact timestamps for later.
파일 크기 11.57 KB
설치 횟수 179
현재 버전 1.1
최근 업데이트 2022-12-28
출시 날짜 2022-05-24
평점 5.00/5 총 4 개의 평점
개발자 kirill17910
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/kotikkir9/Youtube
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Timestamp",
    "description": "Save youtube videos with exact timestamps for later.",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/src\/background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/images\/icon.png",
            "32": ".\/images\/icon.png",
            "38": ".\/images\/icon.png",
            "128": ".\/images\/icon.png"
        }
    },
    "icons": {
        "16": ".\/images\/icon.png",
        "32": ".\/images\/icon.png",
        "38": ".\/images\/icon.png",
        "128": ".\/images\/icon.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ]
}