Video Speed Lord

This extension allow you to control the speed of the video playing. Feel like a time lord!

Video Speed Lordคืออะไร?

Video Speed Lord เป็นส่วนขยายของ Chrome ที่พัฒนาโดย roman.oxenuk และคุณลักษณะหลักของมันคือ "This extension allow you to control the speed of the video playing. Feel like a time lord!"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Speed Lord

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

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

                        Hackathon project for speeding up and slowing down HTML5 videos, especialy at vk.com =)
Thanks to GoHack Hackathon (vk.com/gohack) for pizza and fun!                    

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

ชื่อ Video Speed Lord Video Speed Lord
ID kmeeediidboennbhdjfceodhdboaphlc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc
คำอธิบาย This extension allow you to control the speed of the video playing. Feel like a time lord!
ขนาดไฟล์ 5.75 KB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-04-15
วันที่เผยแพร่ 2017-04-15
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา roman.oxenuk
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Speed Lord",
    "description": "This extension allow you to control the speed of the video playing. Feel like a time lord!",
    "version": "1.0",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click here!"
    },
    "permissions": [
        "activeTab",
        "debugger",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ]
}