Post Reply 
Google behavioral targeting
Mar. 12, 2009, 10:50 PM
Post: #10
RE: Google behavioral targeting
ahhh this script can piss google off. Wonder if we can get a proxomitron equivalent. lol

Code:
// ==UserScript==
// @name           Blackspot Google
// @namespace      http://www.adbusters.org/blogs/blackspot_blog/unclick_google.html
// @description    Automatically clicks on Google ads as protest against privacy violations  -- based on Prefetch Google Ads by Alf at http://hublog.hubmed.org
// @include        http://*
// ==/UserScript==

(function() {
  window.addEventListener("load", function(e) {
    var l = document.getElementsByTagName('a');
    for (i = 0; i < l.length; i++){
    var link = l[i].href;    
    if (link.match(/aclk\?/i)){
        GM_xmlhttpRequest({
        method:"GET",
        url:link,
        headers: {'Referer': document.location},
        onload:function(result) {
        }
        });
    }
    }
  }, false);
})();
source: http://www.adbusters.org/blogs/blackspot...oogle.html
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
Google behavioral targeting - scoop - Mar. 11, 2009, 10:42 PM
RE: Google behavioral targeting - ProxRocks - Mar. 11, 2009, 10:51 PM
RE: Google behavioral targeting - eclipse - Mar. 11, 2009, 11:31 PM
RE: Google behavioral targeting - lnminente - Mar. 12, 2009, 12:53 AM
RE: Google behavioral targeting - scoop - Mar. 12, 2009, 10:58 AM
RE: Google behavioral targeting - lnminente - Mar. 12, 2009, 11:59 AM
RE: Google behavioral targeting - sidki3003 - Mar. 12, 2009, 01:29 PM
RE: Google behavioral targeting - 43unite - Mar. 12, 2009, 02:24 PM
RE: Google behavioral targeting - lnminente - Mar. 12, 2009, 04:25 PM
RE: Google behavioral targeting - bugger - Mar. 12, 2009 10:50 PM
RE: Google behavioral targeting - Siamesecat - Mar. 13, 2009, 06:15 AM

Forum Jump: