Greasy Fork is available in English.

Subscriber Changer

1M Subcribers apear when you got to your channel page

< Feedback on Subscriber Changer

Review: Bad - script does not work

§
Posted: 05.08.2023

Everyone the code is out of date. heres an updated version that will work.


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

(function() {
'use strict';

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

start();
})();

Post reply

Sign in to post a reply.