Skip to content

Instantly share code, notes, and snippets.

View happiness801's full-sized avatar

Kevin Gwynn happiness801

  • CHG Healthcare
  • Utah
View GitHub Profile
@happiness801
happiness801 / amazon-inject-camelcamelcamel-link.user.js
Last active October 13, 2020 18:37
Amazon: Inject CamelCamelCamel Link
@happiness801
happiness801 / remove-ads-modals-nba.user.js
Last active December 14, 2020 17:07
Remove Ads, Modals, Ad-blocker warnings on NBA.com
// ==UserScript==
// @name Allow Ad Blocker on NBA.com
// @namespace http://onai.net/
// @version 0.3
// @description Removes ads, modals from nba.com
// @author Kevin Gwynn
// @match https://*.nba.com/*
// @grant none
// ==/UserScript==
@happiness801
happiness801 / mimecast-close-window.user.js
Created September 14, 2020 22:33
Close Mimecast Windows automatically
// ==UserScript==
// @name Close Mimecast Windows automatically
// @namespace http://onai.net/
// @version 0.1
// @description Close mimecast windows automatically
// @author You
// @match https://us-api.mimecast.com/m/*
// @grant window.close
// ==/UserScript==
@happiness801
happiness801 / remove-ads-modals-forbes.user.js
Last active January 6, 2022 04:27
Remove Ads/Modals from forbes.com
// ==UserScript==
// @name Remove Ads/Modals from forbes.com
// @namespace http://onai.net/
// @version 0.2
// @description Removes ads, modals, paywalls from forbes.com
// @author Kevin Gwynn
// @match https://www.forbes.com/*
// @grant none
// ==/UserScript==
@happiness801
happiness801 / remove-ads-modals-sltrib.user.js
Last active December 14, 2020 17:29
Remove Ads/Modals from sltrib.com
// ==UserScript==
// @name Remove Ads/Modals from sltrib.com
// @namespace http://onai.net/
// @version 0.3
// @description Removes ads, modals, paywalls from sltrib.com
// @author Kevin Gwynn
// @match https://www.sltrib.com/*
// @grant none
// ==/UserScript==
@happiness801
happiness801 / sports24-remove-cruft.user.js
Last active October 3, 2021 22:03
Remove Cruft from Sports24 Video Streaming
// ==UserScript==
// @name Sports24 Cruft
// @namespace http://onai.net/
// @version 0.7
// @description Remove cruft from Sports24 video streaming
// @author Kevin Gwynn
// @match https://sports24.club/*/**/*.html
// @match https://sports24.stream/*/**/*.html
// @match https://sports24.club/**/*.html
// @match https://sports24.stream/**/*.html
@happiness801
happiness801 / zoom-remove-join-meeting-tabs.user.js
Last active December 14, 2020 16:03
Zoom - Auto Remove Join Meeting Tabs
// ==UserScript==
// @name Zoom - Close Stupid Windows
// @namespace http://onai.net/
// @version 0.2
// @description Just close the pointless "Joining meeting..." tabs
// @author Kevin Gwynn
// @match https://*.zoom.us/j/*
// @match https://*.zoom.us/w/*
// @grant window.close
// ==/UserScript==
@happiness801
happiness801 / ad-users-in-group (WSL)
Created February 4, 2020 22:38
WSL Linux version of list users in AD group (just calls batch version)
#!/bin/bash
cmd.exe /c "ad-users-in-group.bat $*"
@happiness801
happiness801 / ad-users-in-group.bat
Created February 4, 2020 22:35
Get list of users in an AD group by name
@echo off
NET GROUP %* /DOMAIN
@happiness801
happiness801 / ad-groups-for-user (WSL)
Created February 4, 2020 22:03
For WSL use, get AD groups for user
#!/bin/bash
cmd.exe /c "ad-groups-for-user.bat $*"