GayRomeo QuickClose

By marvinate Last update Nov 12, 2011 — Installed 1,821 times.

There are 2 previous versions of this script.

// ==UserScript==
// @name           GayRomeo QuickClose
// @namespace      http://marvinate.wordpress.com/
// @description    Quick close of picture windows
// @include        http*://www.gayromeo.com/*/auswertung/pix/popup.php*
// @include        http*://www.planetromeo.com/*/auswertung/pix/popup.php*
// ==/UserScript==

function closeWindow(pEvent) {
  window.close();
}

function enhanceImage(pImage) {
  pImage.addEventListener("click", closeWindow, false);
}

// =============================================================================
// ===  Main  ==================================================================
// =============================================================================

// Extract all the images
var imageElementsResult                 = document.evaluate("//img", document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
for(var i = 0; i < imageElementsResult.snapshotLength; i++) {
  enhanceImage(imageElementsResult.snapshotItem(i));
}