Skip to content

Instantly share code, notes, and snippets.

@bpetrynski
Created July 15, 2018 18:20
Show Gist options
  • Save bpetrynski/9b056772210f90b4fa597dcbfcb81dc3 to your computer and use it in GitHub Desktop.
Save bpetrynski/9b056772210f90b4fa597dcbfcb81dc3 to your computer and use it in GitHub Desktop.
Skrypt wyłącza otwieranie ogłoszenia w tej samej karcie przy otwieraniu w nowej karcie
// ==UserScript==
// @name Gumtree.pl NewTabOpener
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Skrypt wyłącza otwieranie ogłoszenia w tej samej karcie przy otwieraniu w nowej karcie
// @author Michał Kaciuba, Bartosz Petryński
// @match *://www.gumtree.pl/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(document).ready(function() {
$('body').off('click');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment