Youtube Time Comments

Just one click and you can get comments of users who left in their comments links to any time period of the video on Youtube

Youtube Time Commentsคืออะไร?

Youtube Time Comments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย halmakari322 และคุณลักษณะหลักของมันคือ "Just one click and you can get comments of users who left in their comments links to any time period of the video on Youtube"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Time Comments

ดาวน์โหลดไฟล์ส่วนขยาย Youtube Time Comments ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Time Comments - these are comments that users left with a link to a section of a video on Youtube (for example 12:05 - now it fell funny).

With this extension, you can find these comments among all the comments left below the video.

Features of the extension:
 - After the first upload of comments, it will take time to get all the video comments and filter them.
 - Found comments are cached to speed up the extension and reduce the load on the Youtube API. That is, if new comments appeared under the video, then the extension will take comments from the cache. If you want to filter the comments again, click on the extension icon in the right corner of the browser and click on the "Clear Cache" button.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Youtube Time Comments Youtube Time Comments
ID eidopkbgdakhdijndjpkhinkaipjpghg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-time-comments/eidopkbgdakhdijndjpkhinkaipjpghg
คำอธิบาย Just one click and you can get comments of users who left in their comments links to any time period of the video on Youtube
ขนาดไฟล์ 87.24 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-07-06
วันที่เผยแพร่ 2020-07-05
ผู้พัฒนา halmakari322
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_app_name__",
    "version": "1.0",
    "description": "__MSG_app_desc__",
    "author": "Halmakari",
    "default_locale": "ru",
    "background": {
        "scripts": [
            "js\/lib\/browser-polyfill.min.js",
            "js\/lib\/axios.min.js",
            "js\/config.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png",
            "64": "icons\/64.png",
            "128": "icons\/128.png"
        },
        "default_title": "Youtube Time Comments",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/16.png",
        "24": "icons\/24.png",
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/lib\/browser-polyfill.min.js",
                "js\/lib\/jquery-3.5.1.min.js",
                "js\/content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/*",
        "images\/*"
    ]
}