StoneWars Preise mit Versandkosten

Fügt die Versandkosten zu den Preisen hinzu

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         StoneWars Preise mit Versandkosten
// @namespace    https://dudesoft.dev/
// @description  Fügt die Versandkosten zu den Preisen hinzu
// @version      1.1.1
// @license      MIT
// @author       Philipp Kursawe <[email protected]>
// @match        https://www.stonewars.de/angebote/*alza*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=stonewars.de
// @homepageURL	 https://github.com/pke/stonewars-vsk-userscript
// @supportURL   https://github.com/pke/stonewars-vsk-userscript/discussions
// @grant        GM_addStyle
// ==/UserScript==

(function() {
  'use strict';
  'use esversion: 11';

  const r = /für (\d+,\d+) Euro \((\d+)% Rabatt\)/i;
  const prices = {
      alza: 5.49,
  };

  GM_addStyle(`
     label.with-shipping {
       position: fixed;
       right: 0;
       top: 0;
       padding: 0.3em 0.6em;
       margin: 1em;
       z-index: 1000;
       background: rgba(0,0,0,.4);
       color: #fff;
       cursor: pointer;
       border-radius: 6px;
     }
     .price-with-shipping {
       display: none;
     }

     body.prices-with-shipping .price-with-shipping {
       display: inline;
     }
     body.prices-with-shipping .price-without-shipping {
       display: none;
     }
  `);

  document.body.classList.toggle("prices-with-shipping");

  const label = document.createElement("label");
  label.className = "with-shipping";
  label.innerHTML = "<span class='price-with-shipping'>mit VSK</span><span class='price-without-shipping'>ohne VSK</span>";
  label.onclick = function() {
      document.body.classList.toggle("prices-with-shipping");
      return false;
  }
  document.body.prepend(label);

  const items = document.querySelectorAll("article li");

  for (let item of items) {
      // Grab all li text content that follows <a> or <del><a>
      const textNode = document.evaluate("(del/a|a)/following-sibling::text()", item, null, XPathResult.FIRST_ORDERED_NODE_TYPE)?.singleNodeValue
      if (textNode) {
          const newText = textNode.nodeValue.replace(r, function (match, price, percent) {
              const oldPrice = parseFloat(price.replace(",","."));
              price = (oldPrice + prices.alza).toFixed(2);
              percent = (percent - (((percent * price) / oldPrice) - percent)).toFixed(0);
              return `für ${price.replace(".", ",")} Euro (${percent}% Rabatt)`;
          });
          const span = document.createElement("span");
          span.innerHTML = `<span class="price-with-shipping">${newText}</span><span class="price-without-shipping">${textNode.nodeValue}</span>`
          textNode.replaceWith(span);
      }
  }
})();