Video speed adjuster

Fast-forward, rewind, adjust playback speed on any video

Video speed adjusterคืออะไร?

Video speed adjuster เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Binita Chalise และคุณลักษณะหลักของมันคือ "Fast-forward, rewind, adjust playback speed on any video"

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

screenshot

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

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

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

                        Video speed adjuster adds controls to web videos that allow to increase or decrease playback speed.

Some features:
- Change speed from 0.25x up to 10x
- You can use keyboard shortcuts as well as control panel over the video 

Getting started: Open a video and find speed controls, or use the “s” and “d” buttons on your keyboard.                    

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

ชื่อ Video speed adjuster Video speed adjuster
ID fhdjoapblekhhphgjjoehakeiefdbiep
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/video-speed-adjuster/fhdjoapblekhhphgjjoehakeiefdbiep
คำอธิบาย Fast-forward, rewind, adjust playback speed on any video
ขนาดไฟล์ 429 KB
จำนวนการติดตั้ง 600,000
เวอร์ชันปัจจุบัน 3.2.2
อัปเดตครั้งล่าสุด 2021-07-09
วันที่เผยแพร่ 2021-05-12
คะแนน 4.19/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา Binita Chalise
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/1NM2uTWYzkAg4v6oAzj20jdIbR3CLDlYXuuEBbMqVozI/edit?usp=sharing
ภาษาที่รองรับ id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "3.2.2",
    "offline_enabled": true,
    "icons": {
        "128": "icon-128.png",
        "48": "icon-48.png",
        "16": "icon-16.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "inject_style.css"
            ],
            "js": [
                "inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "l-arrow.png",
        "r-arrow.png"
    ],
    "default_locale": "en",
    "content_security_policy": "script-src 'self' https:\/\/*.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage",
        ""
    ]
}