This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Better Video Control | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2026-05-04-13-04 | |
| // @description try to take over the world! | |
| // @author coder4u | |
| // @updateURL https://gist.github.com/coder4u/7dc4958a8eb81ce6dcb59fad681b174e/raw/448c69eea7efb522aee6dfedc9f2598176cf4788/v-better-video-control.user.js | |
| // @downloadURL https://gist.github.com/coder4u/7dc4958a8eb81ce6dcb59fad681b174e/raw/448c69eea7efb522aee6dfedc9f2598176cf4788/v-better-video-control.user.js | |
| // @match https://delta.mil.gov.ua/vezha/crew/* | |
| // @match https://delta.mil.gov.ua/vezha/sa/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const mediaSizes = { | |
| 'mobile-small': { | |
| max: 420 | |
| }, | |
| 'mobile-medium': { | |
| min: 420, | |
| max: 700 | |
| }, | |
| 'mobile-large': { | |
| min: 700, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $.ajaxSetup({ | |
| beforeSend: function (arg, settings) { | |
| console.log(decodeURIComponent(settings.data).toString().replace(/\&/g,'\n')) | |
| } | |
| }) |