Created
November 22, 2013 12:41
-
-
Save eeroan/7599264 to your computer and use it in GitHub Desktop.
User script for making confluence blog layout decent. To install, save this file (from <>) and drag it to window -> extensions in Chrome
This file contains 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== | |
// @match https://extra.reaktor.fi/* | |
// ==/UserScript== | |
var link = document.createElement('style') | |
link.setAttribute('type', 'text/css') | |
link.innerHTML=[ | |
'.page-metadata ul { overflow: auto; }', | |
'.page-metadata { overflow: hidden; }' | |
].join('\n') | |
document.getElementsByTagName('head')[0].appendChild(link) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment