NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Boto3 Redirect // @namespace http://tampermonkey.net/ // @version 0.1 // @description Redirect to boto3 docs // @author You // @match https://boto3.amazonaws.com/ // @grant none // @license GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt // ==/UserScript== (function() { 'use strict'; // Your code here... window.location = "https://boto3.amazonaws.com/v1/documentation/api/latest/index.html" })();