YouTube Timestamp Comments

An extension that lists timestamp comments on YouTube.

Qu'est-ce que YouTube Timestamp Comments ?

YouTube Timestamp Comments est une extension Chrome développée par Akira Shimizu, et sa fonction principale est "An extension that lists timestamp comments on YouTube.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Timestamp Comments

Téléchargez les fichiers d'extension YouTube Timestamp Comments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This is a Google Chrome extension that displays timestamp comments on YouTube. The main features are:

- displays timestamp comments
- sorts by timestamp
- jumps playback position to timestamp

---

YouTube の時間指定コメントを表示する Google Chrome 拡張機能です。主な機能は以下の通りです。

- タイムスタンプを含むコメントを表示
- 時間の早い順にソート
- タイムスタンプのクリックで再生位置をジャンプ                    

Informations de Base sur l'Extension

Nom YouTube Timestamp Comments YouTube Timestamp Comments
ID khngjoedfeicfbjlcfmiigbokbnlibei
URL Officiel https://chromewebstore.google.com/detail/youtube-timestamp-comment/khngjoedfeicfbjlcfmiigbokbnlibei
Description An extension that lists timestamp comments on YouTube.
Taille du Fichier 914 KB
Nombre d'Installations 412
Version Actuelle 0.8.2
Dernière Mise à Jour 2022-02-24
Date de Publication 2020-07-01
Évaluation 4.00/5 Total 6 Évaluations
Développeur Akira Shimizu
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Foo-x/youtube-timestamp-comments
Langues Prises en Charge ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Timestamp Comments",
    "version": "0.8.2",
    "manifest_version": 3,
    "description": "An extension that lists timestamp comments on YouTube.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "js\/background\/background.js"
    },
    "action": {
        "default_icon": "icons\/icon19.png",
        "default_popup": "html\/page_action\/page_action.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "js\/content_scripts\/contentScript.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "storage",
        "activeTab",
        "scripting"
    ]
}