BreakOut

By Bjørn Rosell Last update Jun 11, 2007 — Installed 174 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name            BreakOut
// @description     Break out of a frame/iframe with a quick ctrl+doubleclick
// @version         1.0
// @date            2007-06-11
// @author          Bjorn Rosell
// @namespace       http://www.rosell.dk/
// @include         *
// ==/UserScript==

if (self!=top) {
    document.addEventListener('dblclick', function(e) {if (e.ctrlKey) GM_openInTab(document.location.href)}, false);
}