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是由ABrill开发的Chrome扩展程序,该扩展的主要功能是“Allows to natively specify shortcuts for speed up or slow down active video”。

扩展截图

screenshot
screenshot

下载Shortcuts for video acceleration扩展crx文件

下载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"
            }
        }
    }
}