Aliexpress show total price

Show total price- remove hide-total-price class

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Aliexpress show total price
// @namespace    https://greasyfork.org/pl/scripts/384167-aliexpress-show-total-price
// @version      0.1
// @author       Mateusz Kula
// @description  Show total price- remove hide-total-price class
// @icon         https://kulam.pl/script/aliexpress-total-price/icon.jpg
// @icon64       https://kulam.pl/script/aliexpress-total-price/icon.jpg
// @supportURL   https://kulam.pl/kontakt
// @match        *.aliexpress.com/*
// @grant        GM_registerMenuCommand
// @grant        GM_xmlhttpRequest
// @homepageURL  https://kulam.pl


// ==/UserScript==
(function() {
    if(document.querySelector("#j-product-operate-wrap > dl.p-property-item.p-total-price.hide-total-price"))
        document.querySelector("#j-product-operate-wrap > dl.p-property-item.p-total-price.hide-total-price").classList.remove("hide-total-price");
else
console.log("Aliexpress show total price: Element not found");
})();