NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Technical Details Show Script // @namespace http://tampermonkey.net/ // @version 0.1 // @description displays technical details for user errors // @author Dillon Heins // @match https://mail.google.com/mail/u/* // @grant none // @require https://code.jquery.com/jquery-latest.js // @require https://greasyfork.org/scripts/21927-arrive-js/code/arrivejs.js?version=139586 // ==/UserScript== (function() { 'use strict'; $(document).arrive("[id$='technical_details']", function() { $(this).css("display", "unset"); }); })();