- Nintendo Switch
- 3 "Pro" controllers
- Amazon (I like this one the best, but it's more expensive.)
- TNE - Switch Lite Wireless Pro Controller
- A third that I do not recommend. (link, in case you're curious)
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
// ABOUTME: Userscript that adds a thick, dashed orange border to password fields when they reach maximum length | |
// ABOUTME: Monitors all password input fields on any webpage for length changes and paste validation with alerts | |
// ==UserScript== | |
// @name Password Field Max Length Border | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Adds a thick, dashed orange border around password fields when they reach maximum length and alerts on paste overflow | |
// @author You | |
// @match *://*/* |
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 Set GitHub PR Reviewers from URL Param | |
// @namespace http://tampermonkey.net/ | |
// @version 1 | |
// @description Set GitHub PR Reviewers from URL Param | |
// @author chris@raser.io | |
// @match https://github.com/ua-digital-commerce/ab-tests/compare/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.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
(function () { | |
var chrome = Application('Google Chrome'); | |
chrome.windows().forEach((win, winIdx) => { | |
win.tabs().forEach((tab, tabIdx) => { | |
var title = tab.title(); | |
if (/^Meet -/.test(title)) { | |
chrome.windows[winIdx].activeTabIndex = tabIdx + 1; | |
Application('System Events').processes["Google Chrome"].windows[winIdx].actions['AXRaise'].perform(); | |
chrome.activate(); | |
} |