Subscriber Changer

1M Subcribers apear when you got to your channel page

लेखक
GD SuperRice
दैनिक इंस्टॉल
0
एकूण इंस्टॉल
740
रेटिंग
0 0 1
आवृत्ती
1.0
बनवली
2020-05-15
अपडेट केली
2020-05-15
आकार
422 Bytes
License
नाही
यांवर लागू होते:

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