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 clear-link-targets.user.js | |
// @namespace http://onai.net/ | |
// @version 0.3 | |
// @description Clears all link targets so they use the existing window | |
// @author Kevin Gwynn | |
// @match https://*.medium.com/* | |
// @match https://*.twitter.com/* | |
// @match https://*.pluralsight.com/* | |
// @match https://*.linkedin.com/* |
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 Show URL at top of App Windows | |
// @namespace http://onai.net/ | |
// @version 0.5 | |
// @description Shows current URL at top of windows for easy copy and paste in App Windows | |
// @author Kevin Gwynn | |
// @match https://*.medium.com/* | |
// @match https://*.twitter.com/* | |
// @match https://*.pluralsight.com/* | |
// @match https://*.facebook.com/* |
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 Remove Popular Mechanics paywall | |
// @namespace http://onai.net/ | |
// @version 0.1 | |
// @description Removes paywall from popularmechanics.com | |
// @author Kevin Gwynn | |
// @match https://*.popularmechanics.com/* | |
// @grant none | |
// ==/UserScript== |
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
; USE THIS TO GET THE DEVICE FRIENDLY NAME | |
; Get-PnpDevice | Where-Object {$_.Class -eq "Bluetooth"} | |
; Get the device details | |
$device = Get-PnpDevice | Where-Object {$_.Class -eq "Bluetooth" -and $_.FriendlyName -eq "EXACT DEVICE FRIENDLY NAME"} | |
; Disable the device | |
Disable-PnpDevice -InstanceId $device.InstanceId -Confirm:$false | |
; Sleep for 10 |
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
# This is more a note/reminder than anything. | |
# Helps to fix when VMMEM is using tons of RAM/CPU/power | |
# Stop all Docker Processes | |
docker stop $(docker ps -aq) | |
# (Windows) Stop WSL | |
wsl --shutdown |
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 Remove Various Ad Content | |
// @namespace http://onai.net/ | |
// @version 0.2 | |
// @description Removes Various Ad content | |
// @author Kevin Gwynn | |
// @match https://*.yahoo.com/* | |
// @grant none | |
// ==/UserScript== |
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 Improves articles about NFTs | |
// @namespace http://onai.net/ | |
// @version 0.1 | |
// @description Makes NFT articles easier to understand | |
// @author Kevin Gwynn | |
// @match https://techcrunch.com/* | |
// @grant none | |
// ==/UserScript== |
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 Remove Amazon Cruft | |
// @namespace http://onai.net/ | |
// @version 0.1 | |
// @description Removes cruft from Amazon including the Cart side-bar | |
// @author Kevin Gwynn | |
// @match https://www.amazon.com/* | |
// @match https://smile.amazon.com/* | |
// @match https://*.amazon.com/* | |
// @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 Simple nyan.cat | |
// @namespace http://onai.net/ | |
// @version 0.2 | |
// @description Simplies Nyan.cat just for fun | |
// @author Kevin Gwynn | |
// @match http://nyan.cat/* | |
// @match http://www.nyan.cat/* | |
// @grant none | |
// ==/UserScript== |