Video Stream Shortcuts

Add some YouTube-like shortcuts to video streaming services

什么是Video Stream Shortcuts?

Video Stream Shortcuts是由Masaki Kobayashi开发的Chrome扩展程序,该扩展的主要功能是“Add some YouTube-like shortcuts to video streaming services”。

扩展截图

screenshot

下载Video Stream Shortcuts扩展crx文件

下载Video Stream Shortcuts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Want YouTube-like shortcut keys in other streaming services?
This extension enables you to use some shortcuts below.

k: Pause/Resume the video
j: Move 10 seconds backward
l: Move 10 seconds forward
f: Enable/Disable fullscreen
m: Mute/Unmute
Shift+, / <: Decrease playback speed
Shift+. / >: Increase playback speed
0–9: Jump to percentages of the video, except for DAZN.

Supported services
- Prime Video
- TED
- Microsoft Stream
- DAZN
- OPENREC

This extension is open source.
Suggestions and pull requests are welcomed!
https://github.com/mkobayashime/video-stream-shortcuts                    

扩展基本信息

名称 Video Stream Shortcuts Video Stream Shortcuts
ID jkclfjpmbcenbmmheenahiglgkefekim
官方URL https://chromewebstore.google.com/detail/video-stream-shortcuts/jkclfjpmbcenbmmheenahiglgkefekim
简介 Add some YouTube-like shortcuts to video streaming services
文件大小 32.35 KB
安装次数 750
当前版本 4.1.0
更新时间 2023-09-10
上架时间 2020-06-25
评分 5.00/5 共5次评分
开发者 Masaki Kobayashi
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/mkobayashime/video-stream-shortcuts
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Stream Shortcuts",
    "version": "4.1.0",
    "description": "Add some YouTube-like shortcuts to video streaming services",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.microsoftstream.com\/*"
            ],
            "js": [
                "msStream.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.amazon.co.jp\/gp\/video\/*"
            ],
            "js": [
                "primeVideo.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.ted.com\/talks\/*"
            ],
            "run_at": "document_end",
            "js": [
                "ted.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.dazn.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "dazn.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.openrec.tv\/live\/*"
            ],
            "run_at": "document_end",
            "js": [
                "openrec.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "svg\/*",
        "*.css"
    ]
}