Skip to content

Instantly share code, notes, and snippets.

@viljowilding
Last active November 17, 2020 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viljowilding/734e3f283330cc1f9a1a63acdb9e6865 to your computer and use it in GitHub Desktop.
Save viljowilding/734e3f283330cc1f9a1a63acdb9e6865 to your computer and use it in GitHub Desktop.
A userscript to fix logging in to the VATSIM SSO with a password manager
// ==UserScript==
// @name VATSIM Login CID Fix
// @namespace http://viljo.me
// @version 0.1
// @description Replace the CID label with Certificate ID for password managers.
// @author Viljo Wilding
// @match https://auth.vatsim.net/login
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('#id').next().text("Certificate ID");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment