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 Video Screenshot Tool | |
// @namespace nemokaul | |
// @version 1.0 | |
// @description Capture video screenshots and save to clipboard or download with timestamp and filename. | |
// @license MIT | |
// @author Nemo Kaul | |
// @match http://*/* | |
// @match https://*/* | |
// @grant none |
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 Automatically pause/resume video playback | |
// @namespace nemokaul | |
// @version 1.3 | |
// @description Automatically pause the video when the mouse leaves the browser window or switches tabs, and automatically play the video when the mouse reactivates the browser window or switches back to the tab | |
// @author Nemo Kaul | |
// @match *://*/* | |
// @grant none | |
// @downloadURL https://gist.github.com/nemokaul/3c02aa3610c579a747bc36d125a14c00/raw/70ff8a5f7c710c2195027e34c24106d99c48a904/autopause.user.js | |
// @updateURL https://gist.github.com/nemokaul/3c02aa3610c579a747bc36d125a14c00/raw/70ff8a5f7c710c2195027e34c24106d99c48a904/autopause.user.js |
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
/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ | |
!(function (e, t) { | |
"use strict"; | |
"object" == typeof module && "object" == typeof module.exports | |
? (module.exports = e.document | |
? t(e, !0) | |
: function (e) { | |
if (!e.document) | |
throw new Error("jQuery requires a window with a document"); | |
return t(e); |