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
| Class LenovoBiosSetting { | |
| [string]$Name | |
| [string]$Value | |
| LenovoBiosSetting([string]$Name, [string]$Value) { | |
| $this.Name = $Name | |
| $this.Value = $Value | |
| } | |
| } |
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 Windwos IT Pro Force English | |
| // @include /^https?://(docs|msdn|technet|support|developer)\.microsoft\.com/[a-z]{2}-[a-z]{2}// | |
| // @include /^https?://support.office.com/[a-z]{2}-[a-z]{2}// | |
| // @run-at document-start | |
| // @icon https://www.microsoft.com/favicon.ico | |
| // @grant none | |
| // @downloadURL https://gist.github.com/MrRoundRobin/c07dc01457a6c9f927cf885d70de2d6b/raw/WindowsITProForceEnglish.user.js | |
| // @updateURL https://gist.github.com/MrRoundRobin/c07dc01457a6c9f927cf885d70de2d6b/raw/WindowsITProForceEnglish.user.js | |
| // @version 2.0 |
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 Youtube download link inserter | |
| // @match https://www.youtube.com/watch?v=* | |
| // @downloadURL https://gist.github.com/MrRoundRobin/e1d22d265dbc707e98c1699e92f49478/raw/YoutubeLinks.user.js | |
| // @icon https://s.ytimg.com/yts/img/favicon_32-vfl8NGn4k.png | |
| // @icon64 https://s.ytimg.com/yts/img/favicon_144-vflWmzoXw.png | |
| // @version 2.7 | |
| // @description Inserts download links to YouTube | |
| // @author TheSeven, RoundRobin | |
| // ==/UserScript== |