Created
July 15, 2018 18:20
-
-
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
This file contains hidden or 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 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