Video Speed Controller

Control video speed of video's on any page with the simple chrome extension

Video Speed Controllerคืออะไร?

Video Speed Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย videospeedcontrollerpro และคุณลักษณะหลักของมันคือ "Control video speed of video's on any page with the simple chrome extension"

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

screenshot
screenshot

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

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

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

                        Control video speed of video's on any page with the simple chrome extension                    

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

ชื่อ Video Speed Controller Video Speed Controller
ID gmbmliclljegcljoncmaoccifcfmkaem
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/video-speed-controller/gmbmliclljegcljoncmaoccifcfmkaem
คำอธิบาย Control video speed of video's on any page with the simple chrome extension
ขนาดไฟล์ 66.69 KB
จำนวนการติดตั้ง 3,218
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-06-29
วันที่เผยแพร่ 2023-06-20
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา videospeedcontrollerpro
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Speed Controller",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "icon128.png",
            "64": "icon128.png",
            "128": "icon128.png"
        }
    },
    "host_permissions": [
        ""
    ],
    "icons": {
        "32": "icon128.png",
        "64": "icon128.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "commands": {
        "increase-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up"
            },
            "description": "Increase video speed"
        },
        "decrease-speed": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Decrease video speed"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}