Remove ynet ad against popup blockers
If you are using a popup blocker, and you are annoyed by Ynet's message that tells you to disable it, you should follow this guide.
In order to skip Ynet's popup block detection, on Chrome or Firefox, you will have to download an extension:
After doing that, you have to add a new script and install the following script:
//add a new script and use the following code:
// ==UserScript==
// @name Remove ynet ad against popup blockers
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove ynet ad against popup blockers
// @author Shakedos
// @match http://*.ynet.co.il/*
// @grant none
// @run-at document-start
// ==/UserScript==
/* jshint -W097 */
'use strict';
// Your code here...
function killMessage(name) {
console.debug(name);
window.canRunAds = true;
}
killMessage("run at document start!");
Once done, save it and go to www.ynet.co.il and use hard referesh.
