Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Ctrl+Z for YouTubeคืออะไร?
Ctrl+Z for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Likbjorn's Software และคุณลักษณะหลักของมันคือ "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ctrl+Z for YouTube
ดาวน์โหลดไฟล์ส่วนขยาย Ctrl+Z for YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
                        Ctrl+Z for YouTube extension allows you to rewind your video back after accidental rewind. Press Ctrl+Z to do so. You can specify other hotkey. The source code is available here: https://github.com/Likbjorn/ytcancel .
Update 1.0.2
- Add redo feature.
Update 1.0.3
- Fix buttons on control panel were not shown.                     ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ |   |  
| ID | goodnjebkdapcafcdipcnlahdppddahg | 
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg | 
| คำอธิบาย | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! | 
| ขนาดไฟล์ | 13.65 KB | 
| จำนวนการติดตั้ง | 65 | 
| เวอร์ชันปัจจุบัน | 1.0.3 | 
| อัปเดตครั้งล่าสุด | 2020-08-10 | 
| วันที่เผยแพร่ | 2020-05-24 | 
| คะแนน | 4.50/5 รวมทั้งหมด 4 คะแนน | 
| ผู้พัฒนา | Likbjorn's Software | 
| อีเมล | [email protected] | 
| ประเภทการชำระเงิน | free | 
| ภาษาที่รองรับ | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ctrl+Z for YouTube",
    "version": "1.0.3",
    "description": "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "icons": {
        "128": "icon128.png"
    }
}  |  |