Skip to content

Instantly share code, notes, and snippets.

@pi-rho
Last active July 31, 2020 21:24
Show Gist options
  • Save pi-rho/90ed53950ed30a0534ffae57308b342c to your computer and use it in GitHub Desktop.
Save pi-rho/90ed53950ed30a0534ffae57308b342c to your computer and use it in GitHub Desktop.
GChatBeautifier.user.js
// ==UserScript==
// @name GChat Beautifier
// @description try to take over the world!
// @namespace https://gist.github.com/pi-rho/90ed53950ed30a0534ffae57308b342c
// @updateURL https://gist.githubusercontent.com/pi-rho/90ed53950ed30a0534ffae57308b342c/raw/GChatBeautifier.user.js
// @version 0.3.1337
// @author me
// @match https://chat.google.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle("div.IEIJqd,div.RnpT2b { margin-top:2px; margin-bottom:2px }");
})();
// ==UserScript==
// @name LADailyPostFixer
// @description try to take over the world!
// @namespace https://gist.github.com/pi-rho/90ed53950ed30a0534ffae57308b342c
// @updateURL https://gist.githubusercontent.com/pi-rho/90ed53950ed30a0534ffae57308b342c/raw/LADailyPostFixer.user.js
// @version 0.1.1337
// @author me
// @match https://ladailypost.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(".elementor-widget-slides, .elementor-widget-image { display: none !important; }");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment