Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jonasbits/ed533ca19da25f5c764c to your computer and use it in GitHub Desktop.
Save jonasbits/ed533ca19da25f5c764c to your computer and use it in GitHub Desktop.
Greasemonkey script for hiding the top frame on di.se
// ==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