Maybe you are lazy like I am, but when I want to read the Boto3 documentation I just open my browser, and in the omnibar
I type boto3
and slap Enter
; however, this results in my browser auto-filling the URL bar with
https://boto3.amazonaws.com
and since the AWS guys are too lazy to add a redirect there, I have created a simple User
Script that does exactly that, it just redirects the browser to the correct link
https://boto3.amazonaws.com/v1/documentation/api/latest/index.html
If you use TamperMonkey, GreaseMonkey, or another tool that runs JavaScript against pages, then you might be interested in checking out my OpenUserJS scripts.
For those too lazy to head to that link, here is the source code:
// ==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"
})();