This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function filter_admin_menues() { | |
// If administrator then do nothing | |
if (current_user_can('activate_plugins')) return; | |
// Remove main menus | |
$main_menus_to_stay = array( | |
// Dashboard | |
'index.php', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Reddit - Visually divide scrolled in content | |
// @version 1 | |
// @grant none | |
// @include https://www.reddit.com/* | |
// ==/UserScript== | |
const dividerCls = 'gm-section-divider', | |
dividerStyle = ` | |
.${dividerCls} { |