YTSave

Bookmark Timestamps of YT Videos

YTSave란 무엇입니까?

YTSave은(는) ashrit-ram-anala에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmark Timestamps of YT Videos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        YTSave easily enables users to bookmark timestamps of YouTube videos with 1 click of a button on the YouTube player. YTSave makes it so that you never need to go searching for a part of a video or searching for a video ever again!

Steps:

1. After installation, pin the YTSave icon to your Chrome Menu Bar by clicking on the puzzle piece and clicking the pin icon. 

2. Go to any YouTube video and a new plus button should have appeared on your YouTube player bar. 

3. Clicking the plus button at any timestamp will save your timestamp and video link to your browser. 

4. To see the timestamp, click the YTSave logo next to the puzzle piece on your Chrome Menu Bar to see all of your saved timestamps in one place.
 
5. Clicking on the thumbnail or the title of the video in the extension user interface will bring you back to the timestamp you bookmarked.                    

확장 프로그램 기본 정보

이름 YTSave YTSave
ID peghhndlpmpmoejloomncaioafieipmh
공식 URL https://chromewebstore.google.com/detail/ytsave/peghhndlpmpmoejloomncaioafieipmh
설명 Bookmark Timestamps of YT Videos
파일 크기 45.19 KB
설치 횟수 97
현재 버전 1.1
최근 업데이트 2023-10-21
출시 날짜 2023-10-17
평점 5.00/5 총 15 개의 평점
개발자 ashrit-ram-anala
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/4d580bbf-afaf-471a-a9c8-6186bf8edb8a
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YTSave",
    "description": "Bookmark Timestamps of YT Videos",
    "version": "1.1",
    "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.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}