Subscriber Changer

1M Subcribers apear when you got to your channel page

نووسەر
GD SuperRice
Daily installs
0
Total installs
717
Ratings
0 0 1
وەشان
1.0
Created
2020-05-15
Updated
2020-05-15
مۆڵەت
نییە
Applies to

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