Crunchyroll Timestamp Helper

This extension will allow you to click on timestamps from chat and move to the specified time in the video

Crunchyroll Timestamp Helperคืออะไร?

Crunchyroll Timestamp Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mario และคุณลักษณะหลักของมันคือ "This extension will allow you to click on timestamps from chat and move to the specified time in the video"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Crunchyroll Timestamp Helper

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

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

                        Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.                    

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

ชื่อ Crunchyroll Timestamp Helper Crunchyroll Timestamp Helper
ID pamhedcogfnafpdblkogpeediihohjob
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob
คำอธิบาย This extension will allow you to click on timestamps from chat and move to the specified time in the video
ขนาดไฟล์ 136 KB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2019-10-20
วันที่เผยแพร่ 2019-10-20
ผู้พัฒนา Mario
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crunchyroll Timestamp Helper",
    "description": "This extension will allow you to click on timestamps from chat and move to the specified time in the video",
    "version": "1.0.3",
    "author": "Mathew Anjos",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.crunchyroll.com\/*"
    ]
}