YouTube Timed Comments

Show comments with timestamps

Co to jest YouTube Timed Comments?

YouTube Timed Comments to rozszerzenie Chrome opracowane przez lerxst, a jego główną funkcją jest „Show comments with timestamps”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Timed Comments

Pobierz pliki rozszerzeń YouTube Timed Comments w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        See comments that have timestamps, show up at the appropriate time.

Note: Only comments that have loaded on the page will show up.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Timed Comments YouTube Timed Comments
ID mfmjnhncafdcdegeiamnjpnjgmmkkaal
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal
Opis Show comments with timestamps
Rozmiar pliku 96.02 KB
Liczba instalacji 159
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2019-09-03
Data Publikacji 2019-09-03
Ocena 3.33/5 Łącznie 3 Oceny
Deweloper lerxst
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Timed Comments",
    "description": "Show comments with timestamps",
    "version": "0.0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "third-party-scripts\/jquery-3.3.1.js",
                "third-party-scripts\/arrive.min.js",
                "third-party-scripts\/clamp.min.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "webNavigation",
        "tabs"
    ],
    "background": {
        "scripts": [
            "event-page.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "third-party-scripts\/jquery-3.3.1.js",
        "third-party-scripts\/mustache.min.js",
        "third-party-scripts\/arrive.min.js",
        "third-party-scripts\/clamp.min.js",
        "page-script.js"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "192": "icons\/icon-192.png"
    }
}