5 Speed Options for HTML5 videos
Allows users to store 5 different speed options and access them with keyboard shortcuts
什么是5 Speed Options for HTML5 videos?
5 Speed Options for HTML5 videos是由h-1开发的Chrome扩展程序,该扩展的主要功能是“Allows users to store 5 different speed options and access them with keyboard shortcuts”。
扩展截图
下载5 Speed Options for HTML5 videos扩展crx文件
下载5 Speed Options for HTML5 videos扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows users to store 5 different speed options and access them with keyboard shortcuts. 5SpeedOptions is heavily influenced by Video Speed Controller Developer: https://github.com/igrigorik Video Speed Controller code: https://github.com/igrigorik/videospeed Chrome extension: https://chrome.google.com/webstore/detail/video-speed-controller/nffaoalbilbmmfgbnbgppjihopabppdk Icon made by Freepik from www.flaticon.com http://www.flaticon.com/free-icon/number-5_1875
扩展基本信息
名称 | |
ID | jgcledljkklfpfbidpfogmcihiphjibn |
官方URL | https://chrome.google.com/webstore/detail/5-speed-options-for-html5/jgcledljkklfpfbidpfogmcihiphjibn |
简介 | Allows users to store 5 different speed options and access them with keyboard shortcuts |
文件大小 | 12.54 KB |
安装次数 | 341 |
当前版本 | 1.3 |
更新时间 | 2018-10-03 |
上架时间 | 2018-10-03 |
评分 | 4.56/5 共9次评分 |
开发者 | h-1 |
付费类型 | free |
扩展官网 | https://github.com/h-1/5SpeedOptions |
帮助页面URL | https://github.com/h-1/5SpeedOptions |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "5 Speed Options for HTML5 videos", "description": "Allows users to store 5 different speed options and access them with keyboard shortcuts", "version": "1.3", "homepage_url": "https:\/\/github.com\/h-1\/5SpeedOptions", "permissions": [ "storage" ], "options_page": "options.html", "icons": { "16": "icons\/Number_5_16.png", "48": "icons\/Number_5_64.png", "128": "icons\/Number_5_128.png" }, "browser_action": { "default_icon": { "16": "icons\/Number_5_16.png", "48": "icons\/Number_5_64.png" }, "default_popup": "options.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "inject.js" ], "css": [ "inject.css" ] } ] } |