كيفية إلغاء الاشتراك في جميع قنوات يوتيوب بنقرة واحدة
.......... اتبع هذه الخطوات ...
1. انقر أو اكتب هذا الرابط في متصفح الويب
https://www.youtube.com/feed/channels (في الكمبيوتر فقط)
2. انقر بزر الماوس الأيمن هناك وانقر فوق الخيار التاسع وانتقل إلى قسم وحدة التحكم (console)
هنا
3. انسخ والصق هذا الرمز 👇
الشفرة:
var i = 0;
var count = document.querySelectorAll("ytd-channel-renderer:not(.ytd-item-section-renderer)");
myTimer();
function myTimer () {
if (count == 0) return;
el = document.querySelector('.ytd-subscribe-button-renderer');
el.click();
setTimeout(function () {
var unSubBtn = document.getElementById("confirm-button").click();
i++;
count--;
console.log(i + " unsubscribed");
console.log(count + " remaining");
setTimeout(function () {
el = document.querySelector("ytd-channel-renderer");
el.parentNode.removeChild(el);
myTimer();
}, 250);
}, 250);
}
4. الآن اضغط على Enter
5. مبروك لك بنجاح إلغاء الاشتراك في جميع قنوات يوتيوب الخاصة بك.
0 تعليقات