Tempus

A tool that allows you to manage and view YouTube comments with timestamps efficiently.

Tempus란 무엇입니까?

Tempus은(는) Sarthak Mangla에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool that allows you to manage and view YouTube comments with timestamps efficiently."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Features:
1. View the concentration of comments using opacity of displayed markers.
2. View comments containing a particular timestamp.
3. While playing the video, view comments with timestamps like a live chat replay.
4. Customize the primary colour, block size of the markers.

To use Tempus, just make sure the extension has been installed and enabled in your browser. Then, you can head to any YouTube video, where the extension will collect timestamps from the comments and display them under the video progress bar.

The settings, which are accessible through the Tempus icon on the top-right of your browser, allow you to:
1. Configure the block size of the marker (value can range between 1 and 20 seconds, default: 1)
2. Toggle HeatMap markers (default: enabled)
3. Toggle the comment live replay (default: disabled)
4. Toggle the marker on-click commment view (default: enabled)
5. Configure the primary colour for markers (default: #ffb347)

Check out the source code here: https://github.com/knightron0/tempus 

Enjoy!                    

확장 프로그램 기본 정보

이름 Tempus Tempus
ID bpdhbpeecmmglmkjfmigehaebpndmceh
공식 URL https://chromewebstore.google.com/detail/tempus/bpdhbpeecmmglmkjfmigehaebpndmceh
설명 A tool that allows you to manage and view YouTube comments with timestamps efficiently.
파일 크기 731 KB
설치 횟수 186
현재 버전 1.0.5
최근 업데이트 2023-05-22
출시 날짜 2021-08-17
평점 4.66/5 총 29 개의 평점
개발자 Sarthak Mangla
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/knightron0/tempus
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tempus",
    "version": "1.0.5",
    "description": "A tool that allows you to manage and view YouTube comments with timestamps efficiently.",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_title": "Tempus",
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/assets\/placeholder.png"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}