Greasy Fork is available in English.

Voxiom.io Fake Gems

Change the gems in your account for Youtube purposes

// ==UserScript==
// @name         Voxiom.io Fake Gems
// @namespace    http://tampermonkey.net/
// @license MIT 
// @version      0.13
// @description  Change the gems in your account for Youtube purposes
// @author       You
// @match        https://voxiom.io/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let inp = prompt('How many gems do you want?');
    var x = document.getElementById("myDIV");
    x.querySelector(".sc-ihINtW lfRlMR").innerHTML = "inp";
})();