Shortcuts for video acceleration

Allows to natively specify shortcuts for speed up or slow down active video

Shortcuts for video accelerationคืออะไร?

Shortcuts for video acceleration เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ABrill และคุณลักษณะหลักของมันคือ "Allows to natively specify shortcuts for speed up or slow down active video"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shortcuts for video acceleration

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

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

                        The extension allows to natively specify shortcuts for video acceleration in Chrome:
 - Speed up/slow down
 - Play video on max possible playback speed
 - Reset speed to usual 

1. Open source
2. Uses native shortcuts manager for extensions in Chrome
3. Almost no-code extension (less than 100 lines)
4. Pure and clean                    

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

ชื่อ Shortcuts for video acceleration Shortcuts for video acceleration
ID chaknloimoaeonfpfkdoielpnhdfleaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/shortcuts-for-video-accel/chaknloimoaeonfpfkdoielpnhdfleaf
คำอธิบาย Allows to natively specify shortcuts for speed up or slow down active video
ขนาดไฟล์ 41.69 KB
จำนวนการติดตั้ง 83
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-04-29
วันที่เผยแพร่ 2020-04-26
ผู้พัฒนา ABrill
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/andrey-brill/a-chrome-extensions/tree/master/video-accelerator
URL หน้าช่วยเหลือ https://github.com/andrey-brill/a-chrome-extensions/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortcuts for video acceleration",
    "description": "Allows to natively specify shortcuts for speed up or slow down active video",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "images\/video-accelerator-16px.png",
        "32": "images\/video-accelerator-32px.png",
        "64": "images\/video-accelerator-64px.png",
        "128": "images\/video-accelerator-128px.png",
        "256": "images\/video-accelerator-256px.png",
        "512": "images\/video-accelerator-512px.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_title": "Open hotkeys bindings"
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "video-speed-up": {
            "description": "Speed up active video",
            "suggested_key": {
                "default": "Alt+Up"
            }
        },
        "video-slow-down": {
            "description": "Slow down active video",
            "suggested_key": {
                "default": "Alt+Down"
            }
        },
        "video-reset-speed": {
            "description": "Reset playback speed",
            "suggested_key": {
                "default": "Alt+Shift+Down"
            }
        },
        "video-max-speed": {
            "description": "Maximize playback speed",
            "suggested_key": {
                "default": "Alt+Shift+Up"
            }
        }
    }
}