חצי
למי שיש greasemonkey ונמאס מהפרסומות בלינקים

  • פותח הנושא N0
  • פורסם בתאריך

N0

New member
חצי
למי שיש greasemonkey ונמאס מהפרסומות בלינקים

לפני השידרוג של תפוז היה אפשר עם adblock לחסום סקריפט אחד אבל עכשיו נראה שסוף סוף תפוז עשו איחוד של הקוד והטריק הזה כבר לא עובד.

מזל שיש greasemonkey
// ==UserScript==// @name tapuz stop link ads
// @namespace tapuzLink
// @description stops tapuz from replacing links in ads// @include http://www.tapuz.co.il/forums2008/*// @version 1// @grant none// ==/UserScript==$(document).ready(function() { setTimeout(function () { $('body').off('mousedown', 'a[href^=http], a[data-href^=http]'); }, 2000);});
 

N0

New member
חשבתי על זה אבל התעצלתי לפתוח שם חשבון

ואני מניח שרוב מי שגם ככה משתמש בדברים האלה נמצא פה בפורום.
בכל מקרה לא ציינתי בקוד כי נראה לי מינורי אבל כמובן שהקוד פתוח והרשות נתונה אם בא לך להעלות
// ==UserScript==// @name tapuz stop link ads
// @namespace tapuzLink
// @description stops tapuz from replacing links in ads// @include http://www.tapuz.co.il/forums2008/*// @version 1// @grant none// @license public domain http://unlicense.org/// ==/UserScript==$(document).ready(function() { setTimeout(function () { $('body').off('mousedown', 'a[href^=http], a[data-href^=http]'); }, 2000);});
 

N0

New member
אתה יכול לנסות למשהו כזה

// ==UserScript==// @name tapuz stop auto refresh
// @namespace tapuzAutoRefresh
// @description stops tapuz page from auto refresh// @include http://www.tapuz.co.il/forums2008/*// @version 1// @grant none// @license public domain http://unlicense.org/// ==/UserScript==$(document).ready(function() { resetRefreshInterval= function(){}; refreshPageInterval && clearTimeout(refreshPageInterval);});
לא בדקתי אם זה עובד אבל נראה לי זה צריך לנטרל את זה
 
למעלה