Oeffnen die Links immer im selben Tab.
Hallo und Willkommen hier im Forum. 😊
Wenn du wirklich alle Links in einem neuen Tab öffnen möchtest, dann geht das mit einem Script für z.B. Tampermonkey.
JavaScript Alles anzeigen// ==UserScript== // @name Links im neuen Tab öffnen // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @include http://* // @include https://* // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelectorAll( 'a' ).forEach( function( element , i ) { element.setAttribute( 'target' , '_blank' ); } ); })();
Genau das ist es habe nun meine Seiten da Eingefuegt siehe Muster.
Ich Danke Dir fuer die schnelle Loesung.
Mit freundlichen Gruessen aus Thailand
ronald
Muster
Spoiler anzeigen
// ==UserScript==
// Name Links im neuen Tab öffnen
// Namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @include https://www.google.ch
// @include https://www.google.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll( 'a' ).forEach(
function( element , i ) {
element.setAttribute( 'target' , '_blank' );
}
);
})();