TallExcitement / Twitter redirect image to orig

// ==UserScript==
// @name         Twitter redirect image to orig
// @namespace    https://openuserjs.org/users/TallExcitement
// @version      0.1
// @description  Redirect to orig
// @author       TallExcitement
// @copyright    2019, TallExcitement (https://openuserjs.org/users/TallExcitement)
// @license      MIT
// @match        https://pbs.twimg.com/media/*:large
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if (document.location.href.endsWith(':large')) {
        const orig = document.location.href.replace(':large', ':orig');
        document.location.href = orig;
    }
})();