Skip to content

Instantly share code, notes, and snippets.

@rf5860
Last active December 5, 2018 09:11
Show Gist options
  • Save rf5860/f74701b25b4d5ccf011ac0640634b103 to your computer and use it in GitHub Desktop.
Save rf5860/f74701b25b4d5ccf011ac0640634b103 to your computer and use it in GitHub Desktop.
JavaCodeGeeksReadability.user.js
// ==UserScript==
// @name JavaCodeGeeksReadability
// @version 0.1
// @description Readability enhancements for JavaCodeGeeks
// @author rjf89
// @match https://www.javacodegeeks.com/*
// @grant GM_addStyle
// ==/UserScript==
const style = `
.content-wrap-wide .content { width: 100%; }
.header-content { display: none; }
`;
(function() {
'use strict';
GM_addStyle(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment