GOTOOLS
MARKEN STANLEY
{
"@context":"http://schema.org/",
"@type":"BreadcrumbList",
"itemListElement": [{"@type":"ListItem","position":1,"item":{"@id":"\/","name":"Home"}},{"@type":"ListItem","position":2,"item":{"@id":"\/marken","name":"MARKEN"}},{"@type":"ListItem","position":3,"item":{"@id":"\/marken\/stanley","name":"STANLEY"}}]
}
Produkteigenschaften: Das kombinierte Stanley Schraubendreher- und Werkzeug-Set besteht aus Zangen, Bits und Schraubendreher in der praktischen Tasche Dazu ist in dem Set noch ein Magnetisierer / Demagnetisierer enthalten Die Größe und Typ des jeweiligen Schraubendrehers sind auf den Griffen gekennzeichnet Die Griffe bestehen aus Gummi und sorgen für eine komfortable Handhabung Die Klingen werden aus Chrom-Vanadium-Stahl hergestellt, was zu weniger abrieb und Korrosion führt Mit praktischer Nylontasche
Technische Daten: Inhalt: 49-teilig
Lieferumfang: 6x Präzisionsschraubendreher 3x Phillips: #00x50mm; #0x50mm; #1x50mm 3x Schlitz: 2.5x50mm; 3.0x50mm; 3.5x50mm 5x Phillips-Schraubendreher: #0x75mm; #1x100mm; #2x38mm ;#2x100mm; #3x150mm 2x Torx-Schraubendreher: T10x100mm; T20x100mm 5x Schlitz-Schraubendreher: 3x75mm; 5x100mm; 6x38mm; 6x100mm; 8x200mm Bit-Schraubendreher mit 18 Bits (1“25mm): Bit-Hex: 2mm; 2.5mm; 3mm; 4mm; 5mm; 5.5mm Bit-Torx: T10; T15; T20; T25; 30; 40 Bit-Schlitz: 3mm; 5mmx2; 6mm; 8mm; 10mm 1x Kombizange 150mm 1x Telefonzange 150mm 1x Magnetisierer / Demagnetisierer 1x Nylontasche
Hersteller Stanley Black & Decker Deutschland GmbH
Black-u.-Decker-Str. 40,
65510 Idstein,
Deutschland 06126/211 Stanley Schraubendreher- und Werkzeug-Set mit Nylontasche 39-teilig Artikel-Nr.: STHT0-62114 EAN: 3253560621148 Hersteller: STANLEY
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);
DHL Paket
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", "973b97048c24319b7ffcedc06e6ff829");
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", "973b97048c24319b7ffcedc06e6ff829");
}
Versandkostenfreie Lieferung in DE ab 100€ Kostenloser Rückversand
$(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
});