Speedy

Speedy is a video playback speed modifier! Fast-forward or slow down any HTML5 video element by accessing the extension's menu.…

Speedyคืออะไร?

Speedy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kamkamdevelopment และคุณลักษณะหลักของมันคือ "Speedy is a video playback speed modifier! Fast-forward or slow down any HTML5 video element by accessing the extension's menu.…"

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

screenshot
screenshot

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

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

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

                        Speedy is a video playback speed modifier! Fast-forward or slow down any HTML5 video element by accessing the extension's menu.

HTML5 video elements on many websites hide the option to adjust the playback speed on a video. With Speedy, you can adjust the speed to one you find suitable or just fast-forward parts you want to skip.

To use Speedy, simply open the extension and adjust the slider to your preferred speed. The left and right arrow icons in the extension will increase or decrease the speed. Once you would like to return to your regular speed, simply click the square icon to immediately set it back to normal.

To adjust your preferred minimum and maximum speed or the step size, click the speedometer in the top right corner. Make sure to apply your settings before exiting!

To use shortcuts while in full screen try pressing the following
** Shortcuts can be changed to fit your needs by accessing the 'Hotkeys' option in settings

- Increase Speed: 
    PC: Alt+D
    Mac: Option+D

- Decrease Speed:
    PC: Alt+A
    Mac: Option+A

- Maximum Speed:
    PC: Alt+W
    Mac: Option+W

- Normal Speed:
    PC: Alt+S
    Mac: Option+S                    

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

ชื่อ Speedy Speedy
ID kgfeknmpndhamomlomdjadlffammgkld
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/speedy/kgfeknmpndhamomlomdjadlffammgkld
คำอธิบาย Speedy is a video playback speed modifier! Fast-forward or slow down any HTML5 video element by accessing the extension's menu.…
ขนาดไฟล์ 21.26 KB
จำนวนการติดตั้ง 262
เวอร์ชันปัจจุบัน 0.0.0.3
อัปเดตครั้งล่าสุด 2021-05-18
วันที่เผยแพร่ 2021-04-17
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา kamkamdevelopment
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speedy",
    "version": "0.0.0.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "Speedy"
    },
    "commands": {
        "speed-slower": {
            "suggested_key": {
                "default": "Alt+A",
                "mac": "Alt+A"
            },
            "description": "Decrease Speed"
        },
        "speed-faster": {
            "suggested_key": {
                "default": "Alt+D",
                "mac": "Alt+D"
            },
            "description": "Increase Speed"
        },
        "speed-normal": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Normal Speed"
        },
        "speed-max": {
            "suggested_key": {
                "default": "Alt+W",
                "mac": "Alt+W"
            },
            "description": "Max Speed"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}