Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Hvad er Ctrl+Z for YouTube?
Ctrl+Z for YouTube er en Chrome-udvidelse udviklet af Likbjorn's Software, og dens hovedfunktion er "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".
Udvidelsesskærmbilleder
Download Ctrl+Z for YouTube-udvidelses-CRX-fil
Download Ctrl+Z for YouTube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | goodnjebkdapcafcdipcnlahdppddahg |
| Officiel URL | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg |
| Beskrivelse | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! |
| Filstørrelse | 13.65 KB |
| Antal Installationer | 65 |
| Nuværende Version | 1.0.3 |
| Senest Opdateret | 2020-08-10 |
| Udgivelsesdato | 2020-05-24 |
| Bedømmelse | 4.50/5 Samlet 4 Bedømmelser |
| Udvikler | Likbjorn's Software |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |