YouTube Timed Comments

Show comments with timestamps

Vad är YouTube Timed Comments?

YouTube Timed Comments är en Chrome-tillägg utvecklad av lerxst, och dess huvudfunktion är "Show comments with timestamps".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Timed Comments-förlängningens CRX-fil

Ladda ner YouTube Timed Comments-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

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

Grundläggande Information om Tillägg

Namn YouTube Timed Comments YouTube Timed Comments
ID mfmjnhncafdcdegeiamnjpnjgmmkkaal
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal
Beskrivning Show comments with timestamps
Filstorlek 96.02 KB
Antal Installationer 159
Aktuell Version 0.0.0.1
Senast Uppdaterad 2019-09-03
Publiceringsdatum 2019-09-03
Betyg 3.33/5 Totalt 3 Betyg
Utvecklare lerxst
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}