Greasy Fork

Greasy Fork is available in English.

Aliexpress Total Price Script

Show Total Price on Aliexpress

// ==UserScript==
// @name         Aliexpress Total Price Script
// @version      0.2
// @description  Show Total Price on Aliexpress
// @author       Hamicuia
// @match        *://*.aliexpress.com/item/*
// @match        *://*.aliexpress.com/store/product*
// @grant        none
// @namespace http://greasyfork.icu/users/298177
// ==/UserScript==

var totalPriceClass = document.querySelectorAll(".p-property-item.p-total-price.hide-total-price");

for(var i = 0, max = totalPriceClass.length; i < max; i++) {
    totalPriceClass[i].className="p-property-item p-total-price";
}