Subscriber Changer

1M Subcribers apear when you got to your channel page

Autore
GD SuperRice
Installazioni giornaliere
0
Installazioni totali
724
Valutazione
0 0 1
Versione
1.0
Creato il
15/05/2020
Aggiornato il
15/05/2020
Licenza
Non disponibile
Applica a

// ==UserScript==
// @name Subscriber Changer
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 1M Subcribers apear when you got to your channel page
// @author GD SuperRice
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==

function start() {
var subscribers = document.getElementById("subscriber-count");
subscribers.innerHTML = "1M Subscribers";
setTimeout(start, 0);
}
start();