Skip to content

Instantly share code, notes, and snippets.

@kyori19
Created November 19, 2023 16:27
Show Gist options
  • Save kyori19/45c8d438eda074c20d8ed660b0894fa0 to your computer and use it in GitHub Desktop.
Save kyori19/45c8d438eda074c20d8ed660b0894fa0 to your computer and use it in GitHub Desktop.
Good bye, Amazon Workdocs - Redirect you to AWS SSO instead of Amazon Workdocs.
// ==UserScript==
// @name Good bye, Amazon Workdocs
// @namespace https://accelf.net/
// @version 0.1
// @description Redirect you to AWS SSO instead of Amazon Workdocs.
// @author kyori19
// @match https://*.awsapps.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=signin.aws
// @grant none
// ==/UserScript==
(function() {
'use strict';
if (location.pathname === '/') {
location.pathname = '/start/';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment