Forked from lmonilsson/Remove di.se top bar (Greasemonkey)
Created
October 31, 2015 11:29
-
-
Save jonasbits/ed533ca19da25f5c764c to your computer and use it in GitHub Desktop.
Greasemonkey script for hiding the top frame on di.se
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== | |
// @name Remove di.se top frame | |
// @namespace http://www.di.se | |
// @include http://www.di.se/* | |
// @noframes | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var frameset = top.document.getElementsByTagName("frameset")[0]; | |
frameset.setAttribute("rows", "0,0,*"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment