Raw Source
elias.kutz / MirrorDriveVid

// ==UserScript==
// @name         MirrorDriveVid
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  MirrorVid
// @author       You
// @match        https://drive.google.com/file/*
// @updateURL    https://github.com/Techie-GSC/drive-backwards/raw/main/userscript.js
// @downloadURL  https://github.com/Techie-GSC/drive-backwards/raw/main/userscript.js
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener('load', function() {
        document.addEventListener("click", function(){
            document.getElementById("drive-viewer-video-player-object-0").style.transform = "scaleX(-1)";
});
}, false);

})();