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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ctrl+Z for YouTube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } } |