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 |
公式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 |
Eメール | [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" } } |