Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
什么是Ctrl+Z for YouTube?
Ctrl+Z for YouTube是由Likbjorn's Software开发的Chrome扩展程序,该扩展的主要功能是“Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!”。
扩展截图
下载Ctrl+Z for YouTube扩展crx文件
下载Ctrl+Z for YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ctrl+Z for YouTube extension allows you to rewind your video back after accidental rewind. Press Ctrl+Z to do so. You can specify other hotkey. The source code is available here: https://github.com/Likbjorn/ytcancel .
Update 1.0.2
- Add redo feature.
Update 1.0.3
- Fix buttons on control panel were not shown. 扩展基本信息
| 名称 | |
| ID | goodnjebkdapcafcdipcnlahdppddahg |
| 官方URL | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg |
| 简介 | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! |
| 文件大小 | 13.65 KB |
| 安装次数 | 65 |
| 当前版本 | 1.0.3 |
| 更新时间 | 2020-08-10 |
| 上架时间 | 2020-05-24 |
| 评分 | 4.50/5 共4次评分 |
| 开发者 | Likbjorn's Software |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Ctrl+Z for YouTube",
"version": "1.0.3",
"description": "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"contentscript.js"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"permissions": [
"*:\/\/*.youtube.com\/*"
],
"icons": {
"128": "icon128.png"
}
} | |