Subscriber Changer

1M Subcribers apear when you got to your channel page

Aŭtoro
GD SuperRice
Ĉiutagaj instaloj
0
Tutaj instaloj
724
Ratings
0 0 1
Versio
1.0
Kreita
2020/05/15
Ĝisdatigita
2020/05/15
Licenco
N/A
Aplikiĝas al

// ==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();