Greasy Fork is available in English.

Display of Remaining Stock Quantity on Hololive Shop

On the product page of Hololive Shop, the remaining quantity of each product is displayed.

Δημιουργός
weiwei mov
Ημερήσιες εγκαταστάσεις
0
Σύνολο εγκαταστάσεων
57
Βαθμολογίες
0 0 0
Έκδοση
2
Δημιουργήθηκε την
15/03/2023
Ενημερώθηκε την
15/03/2023
Άδεια
Μη διαθέσιμη
Εφαρμόζεται σε

繁體中文日本語English

-Update (2023/04/14) This script is no longer valid.

On the product page of Hololive Shop, the remaining quantity of each product is displayed.


※ This script is modified from ▼ If there are any issues, I will immediately take it down.

javascript:Elspw.params.product.variants.forEach(element=>{var id = element.id;var qty = element.qty;var title = element.title;var productLabel = document.querySelector(`input[value='${id}'] ~ label .ProductOption__label--product`);productLabel.innerHTML = `${title.substring(title.indexOf('/') + 1).trim()} / 數量: </span><span style="color:red">${qty}</span>`;});