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.
擴展基本資訊
名稱 | Ctrl+Z for YouTube |
ID | goodnjebkdapcafcdipcnlahdppddahg |
官方網址 | 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" } } |