GOTOOLS
HANDWERKZEUGE Handwerkzeuge
{
"@context":"http://schema.org/",
"@type":"BreadcrumbList",
"itemListElement": [{"@type":"ListItem","position":1,"item":{"@id":"\/","name":"Home"}},{"@type":"ListItem","position":2,"item":{"@id":"\/handwerkzeuge","name":"HANDWERKZEUGE"}},{"@type":"ListItem","position":3,"item":{"@id":"\/handwerkzeuge\/handwerkzeuge","name":"Handwerkzeuge"}}]
}
Produkteigenschaften: Das ultrakompakte und leichte Fahrradwerkzeug mit zwei 4-fach Bits und drei Reifenhebern Mit nur einem Bit werden vier verschiedene Schraubprofile betätigt Deutliche Gewichteinsparung von über 50 % Durch die enorme Platzeinsparung ist das Bicycle Set 15 sehr gut für mobile Einsätze geeignet Die Funktionsfähigkeit der großen Profile wird durch die einfedernden kleinen Abtriebe ermöglicht Der Bit hat einen 1/4" Sechskant-Antrieb (Wera Anschluss-Reihe 1) und ist somit auch mit z. B. Bit-Ratschen und Bits-Handhaltern mit Rapidaptor einsetzbar Der Reifenheber 9504 hat eine 1/4" Aufnahme für den Einsatz eines 1/4" Bits Wenn beide Reifenheber 9504 übereinander gesteckt sind, kann ein 4-in-1 Bit eingesetzt werden und man erhält ein Schraubwerkzeug Der Reifenheber 9505 ist gleichzeitig Ventilausdreher und Entlüfter Reifenheber und 4-in-1 Bits können zusammengesteckt werden so ist alles kompakt und unverlierbar zusammen.Technische Daten: 2x 9504 Reifenheber mit Bit-Aufnahme 2: 105.0 1x 9505 Reifenheber mit Ventilausdreher 3: 105.0 1x 9506 4-in-1 Bit 1: Innensechskant 3.0 / 4.0 / 5.0 / 6.0x37 1x 9507 4-in-1 Bit 2: Innensechskant 2.5 / 5 / 6x37 TX 25x37Lieferumfang: 1x Wera Fahrradwerkzeug-Set Bicycle Set 15, 5 tlg,
Hersteller Wera Werkzeuge GmbH
Korzerter Str. 21-25,
42349 Wuppertal,
Deutschland 0202/40450 Wera Fahrradwerkzeug-Set Bicycle Set 15, 5 tlg, Artikel-Nr.: 05004182001 EAN: 4013288222190 Hersteller: Wera
const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung: "
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
if(!document.getElementById('paypal-smart-payment-script'))
{
var script = document.createElement("script");
script.type = "module";
script.id = "paypal-smart-payment-script";
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "7fdd6fb4cb01d7bdc1974e6796afa614");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "7fdd6fb4cb01d7bdc1974e6796afa614");
}
Versandkostenfreie Lieferung in DE ab 100€ Kostenloser Rückversand EXPRESS mit UPS NEXT DAY möglich Bei Bestellung mit Zahlungseingang vor 12 Uhr, Aufpreis: 9,99€ (Zustellung Mo.-Fr.)
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});