NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Direnc.net KDV ekleme // @namespace http://www.dullson.com // @version 1.1 // @description Sitede gösterilen fiyatları KDV eklenmiş halleriyle değiştirir. // @author Dullson // @match https://www.direnc.net/* // @grant none // @updateURL https://openuserjs.org/meta/dullson/Direnc.net_KDV_ekleme.meta.js // @downloadURL https://openuserjs.org/install/dullson/Direnc.net_KDV_ekleme.user.js // @copyright 2016, dullson (https://openuserjs.org/users/dullson) // @license MIT // ==/UserScript== // fiyatlara KDV ekle document.querySelectorAll('.productPrice .currentPrice').forEach(node => { node.setAttribute('title', node.textContent) node.textContent = ( parseFloat( node.textContent .split(" ")[0] .replace('.', '') .replace(',', '.') ) * 1.18 ).toFixed(2) + " TL"; }) // fiyatlar düşükten yükseğe sırala ve stokta olanları göster document.querySelectorAll('aside#leftColumn a, #navigasyon a[href]').forEach(node => node.href += '?sort=5&stock=1')