Youtube Timestamp Bookmarker

Bookmark the timestamp of a YouTube video to watch later

Youtube Timestamp Bookmarker란 무엇입니까?

Youtube Timestamp Bookmarker은(는) Forever Impulse Tech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmark the timestamp of a YouTube video to watch later"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension allows you to bookmark the timestamp of any YouTube video with one click. View your bookmarked YouTube videos by clicking the links in the extensions' pop-up window.

This will save you the time and effort of having to remember where you stopped watching a video. 

Features: 
- Search bar
- Update video titles
- Sort by favorited videos and date
- Light and dark mode toggle
- Remove single or multiple videos from bookmark

More features on the way!                    

확장 프로그램 기본 정보

이름 Youtube Timestamp Bookmarker Youtube Timestamp Bookmarker
ID hdpcgcongdbbalkpifkdgmgifnoiddck
공식 URL https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/hdpcgcongdbbalkpifkdgmgifnoiddck
설명 Bookmark the timestamp of a YouTube video to watch later
파일 크기 27.81 KB
설치 횟수 722
현재 버전 2.1.2
최근 업데이트 2022-11-17
출시 날짜 2022-04-14
평점 4.75/5 총 4 개의 평점
개발자 Forever Impulse Tech
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Timestamp Bookmarker",
    "description": "Bookmark the timestamp of a YouTube video to watch later",
    "version": "2.1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/ytb_icon.png",
            "32": "\/images\/ytb_icon.png",
            "48": "\/images\/ytb_icon.png",
            "128": "\/images\/ytb_icon.png"
        }
    },
    "icons": {
        "16": "\/images\/ytb_icon.png",
        "32": "\/images\/ytb_icon.png",
        "48": "\/images\/ytb_icon.png",
        "128": "\/images\/ytb_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "js": [
                "options.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/bookmark.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}