Timestamped YouTube Comments

Allows users to see timestamped comments as they watch YouTube

Timestamped YouTube Comments क्या है?

Timestamped YouTube Comments kenny द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows users to see timestamped comments as they watch YouTube"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Timestamped YouTube Comments एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Features:
- Pause to persist a comment
- Hover over a comment to see its replies
- Click the Comments icon in the video bar to toggle comments on/off 
- Click on a comment to open a new tab with that comment at the top of the comment section (useful for replying to comments)
- Use your own YouTube Data API key (pin the extension to your toolbar and open the popup to access)

9/30/23 update: You must now create and enter your own YouTube Data API key. The extension will default to use my key but YouTube has cut down my quota drastically so the extension will probably not work if you don't use your own :(

Contact support at [email protected] or leave a review if you like it!                    

एक्सटेंशन की मूल जानकारी

नाम Timestamped YouTube Comments Timestamped YouTube Comments
ID gnpppldhfbbagiaalkddddajadhlgofm
आधिकारिक URL https://chromewebstore.google.com/detail/timestamped-youtube-comme/gnpppldhfbbagiaalkddddajadhlgofm
विवरण Allows users to see timestamped comments as they watch YouTube
फ़ाइल का आकार 884 KB
स्थापना संख्या 2,313
वर्तमान संस्करण 1.23.0
अंतिम अपडेट 2023-10-01
प्रकाशन तिथि 2020-02-06
रेटिंग 4.27/5 कुल 75 रेटिंग्स
डेवलपर kenny
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Timestamped YouTube Comments",
    "name": "Timestamped YouTube Comments",
    "manifest_version": 3,
    "action": {
        "default_title": "Timestamped YouTube Comments",
        "default_popup": "popup.html"
    },
    "description": "Allows users to see timestamped comments as they watch YouTube",
    "version": "1.23.0",
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "\/static\/js\/main.js"
            ],
            "css": [
                "\/static\/css\/main.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "icons": {
        "16": "chat16.png",
        "32": "chat32.png",
        "48": "chat512.png",
        "128": "chat128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.svg",
                "*.png",
                "*.wav"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}