Oder einfach ein Skript für die Monkeys nutzen, das funktioniert auch im Privaten Modus vom Firefox. Und da werden Cookies eh wieder gelöscht.
Google Suche URL in neuen Tab
-
Temkina -
14. September 2026 um 22:54 -
Erledigt
-
-
Na ich denke, wenn ich einen dauerhaften Cookie abspeichere, dass jener mich eindeutig immer identifiziert bei Google und Google somit weiß, wonach ich suche usw. Oder habe ich hier einen Denkfehler?
JavaScript
Alles anzeigen// ==UserScript== // @name Google All Links Target _Blank (New Window or New Tab) // @namespace JeffersonScher // @description Adds target="_blank" to all links that do not already have a target set (does not add targets to forms) // @match *://*.google.com/* // @match *://*.google.de/* // @copyright Copyright 2012 Jefferson Scher // @license CC BY http://creativecommons.org/licenses/by/3.0/ // @version 0.9.2 // @grant none // ==/UserScript== // "external_only" - true: don't change links internal to the site; false: change every link var altb_external_only = true; if (document.body){ // Check all links in the body now checkNode(document.body); // Use a MutationObserver (Fx14+) to watch for additions to the document that could include new links var MutOb, chgMon, i, httpels, opts; // To disable this feature (might improve performance), comment out the following line: var MutOb = (window.MutationObserver) ? window.MutationObserver : window.WebKitMutationObserver; if (MutOb){ chgMon = new MutOb(function(mutationSet){ mutationSet.forEach(function(mutation){ // when additions to the document are detected, check for links for (i=0; i<mutation.addedNodes.length; i++){ if (mutation.addedNodes[i].nodeType == 1){ checkNode(mutation.addedNodes[i]); } } }); }); // attach chgMon to document.body opts = {childList: true, subtree: true}; chgMon.observe(document.body, opts); } /* // For testing only -- all links cyan var sty = document.createElement("style"); sty.setAttribute("type", "text/css"); sty.appendChild(document.createTextNode("a{background-color:#0ff}")); document.body.appendChild(sty); */ } function checkNode(el){ // Find links that do not have a target attribute; we don't want to change existing targets var aLinks = el.querySelectorAll("a.zReHs[href]:not([target])"); var href = ""; if (aLinks.length > 0){ for (var j = 0; j < aLinks.length; j++){ // Check links that do not start with "javascript:" href = aLinks[j].href.toLowerCase(); if (href.indexOf("javascript:") != 0){ // Check the "external_only" parameter // Add the target regardless of site aLinks[j].setAttribute("target", "_blank"); /* // For testing only aLinks[j].style.backgroundColor = "#ff0"; */ } } } }Aber habe jetzt Greasemonkey installiert und dies hier eingefügt. Es scheint zu funktionieren. Vielen Dank!
-
Na ich denke, wenn ich einen dauerhaften Cookie abspeichere, dass jener mich eindeutig immer identifiziert bei Google und Google somit weiß, wonach ich suche usw. Oder habe ich hier einen Denkfehler?
Google weiß, dass einer von ca. 200 Millionen Firefox-Nutzern bestimmte Suchanfragen gestellt hat, kann das aber nicht auf dich als reale Person zurückführen. Und das Problem verstehe ich ehrlich nicht. Mal abgesehen davon, dass Google auch ohne Cookies zahlreiche Informationen loggen kann, wie deine IP-Adresse oder Eigenschaften deines Browsers, was bereits zu einem relativ eindeutigen Erkennungsmerkmal führt. Wenn man Google partout keine Informationen geben möchte, darf man eben kein Google nutzen. Alternativen gibt es mehr als genug.
-
-