YouTubeは過去10年間またはそのままのコンテンツを大きく動員しました。ユーザーはそれらがコンテンツを楽しむチャネルを購読することができ、したがって彼らが彼らの興味のものにアクセスできるようにすることをより簡単にすることができます。あなたが購読してくれるチャンネルの数にキャップがないので、私たちは積極的に視聴していない多くのチャンネルに購読されていることをよく見つけることがよくあります。これにより、イライラすることができるリュッカウスの少しを作成できます。この記事では、一度に加入しているすべてのYouTubeチャンネルから退会できる方法を説明します
一度にすべてのYouTubeチャンネルから退会する方法
- Via Subscriptions Manager
- Inspect Elementを使用する
1] Via Subscriptions Manager
これを行う最初の、わずかに長い方法は、YouTube.com accountのサブスクリプションマネージャを使用しています。プロセスは自動化されていませんが、それはあなたがそれらから退会するオプションと一緒に購読しているすべてのチャンネルのリストを与えますので、不要なものを除外することができます
- First事項まず、YouTube accountを整理したいYouTube.com and logを開きます。左側のオプションペインで、[サブスクリプション]をクリックします。これにより、表示した最新のビデオと購読しているYouTubeチャネルがそれらを再生しました。それでは、Manage
- をクリックしてくださいこれで、あなたが購読しているすべてのYouTubeチャンネルのリストが表示されます。各チャンネルの横にあるチャンネルから登録解除するボタンは、Subscribed buttonを押すだけで購読をキャンセルします。不要なチャンネルに登録解除されたらウィンドウを閉じます
このリストのチャンネルはアルファベット順に並べられ、あなたがそれらを購読している順序ではありません
2] Inspect Elementを使う
さて、第2の方法に。これは少し技術的なものですので、あなたはあなたのステップで正確になる必要があります。 Inspect Elementを使用して、すべてのYouTubeチャンネルからprocess and unsubscribeを1つのGOに自動化できます。これはあなたがする必要があるものです:
最初のメソッドで行ったときに、購読チャネルリストを開きます。 Scroll最後のチャンネルに向かうように、画面上のすべてのチャンネルをロードします。それでは、screen and select Inspect(またはInspect Element)を右クリックしてください
次に、上のタブの配列からConsole tabをクリックしてください。 Copy and paste Console window and press enterの下部の次のコード:
/**
* Youtube bulk unsubsribe fn.
* Wrapping this in an IIFE for browser compatibility.
*/
(async function iife() {
// This is the time delay after which the "unsubscribe" button is "clicked"; Tweak to your liking!
var UNSUBSCRIBE_DELAY_TIME = 2000
/**
* Delay runner. Wraps `setTimeout` so it can be `await`ed on.
* @param {Function} fn
* @param {number} delay
*/
var runAfterDelay = (fn, delay) => new Promise((resolve, reject) => {
setTimeout(() => {
fn()
resolve()
}, delay)
})
// Get the channel list; this can be considered a row in the page.
var channels = Array.from(document.getElementsByTagName(`ytd-channel-renderer`))
console.log(`${channels.length} channels found.`)
var ctr = 0
for (const channel of channels) {
// Get the subsribe button and trigger a "click"
channel.querySelector(`[aria-label^='Unsubscribe from']`).click()
await runAfterDelay(() => {
// Get the dialog container...
document.getElementsByTagName(`yt-confirm-dialog-renderer`)[0]
// and find the confirm button...
.querySelector(`#confirm-button`)
// and "trigger" the click!
.click()
console.log(`Unsubsribed ${ctr + 1}/${channels.length}`)
ctr++
}, UNSUBSCRIBE_DELAY_TIME)
}
})()
YouTubeチャンネルは、もう1つ後に留めておくことを目的としています
プロセスが任意の時点で停止した場合は、subscription listがクリアされるまでコードを再実行できます
ヒント:Windowsの世界で最善のTWC YouTube Channelを購読することをお勧めします
YouTubeのすべての履歴をどのようにクリアしますか?
YouTubeについての別の非常によくある質問照会は、そのsearch historyがどのようにクリアされることができるか、そしてそれは非常に単純なプロセスを所定のプロセスを備えています。 YouTube appで、ライブラリボタンをクリックしてYouTubeの設定を開きます。ここでは、YouTube historyを消去するオプションが表示されます。同様に、コンピュータでは、左側のオプションペインのhistory optionが表示されます。 Clickその上に「Clear All Watch history」を選択します
削除された後にInternet historyを回復することができますか?
人々はInternetから完全に削除されていないこと、そしてそれは部分的に本当であると信じています。削除したinternet historyを戻して取得したい場合は、いくつかのことがSystem Restore pointまたはデスクトップ検索Programとしての役割を果たすことができます。削除されたブラウジング履歴を追跡するためにクッキーを利用することもできます
この記事では、バルクでYouTubeチャンネルを購読解除するプロセスを案内でき、将来それに問題がないことを願っています
How to unsubscribe from all your YouTube channels at once
YouTube has mobilized content to a great extent over the past decade or so. Users can subscribe to channels of which they enjoy the content, thus making it easier for them to have access to the stuff of their interest. Since there are no caps on the number of channels you end up subscribing to, we often find ourselves being subscribed to many channels we don’t actively watch. This can create a bit of a ruckus that can be frustrating. In this article, we will demonstrate how you can unsubscribe from all the YouTube channels you’re subscribed to at once.
How to unsubscribe from all your YouTube channels at once
- Via the Subscriptions Manager
- Using the Inspect Element
1] Via the Subscriptions Manager
The first, slightly lengthy way to do this is using the subscriptions manager of your YouTube.com account. The process is not automated but it gives you a list of all the channels you’re subscribed to along with an option to unsubscribe from them, so you can filter out the unwanted ones.
- First things first, open YouTube.com and log in with the YouTube account that you want to clean up
- On the left side options pane, click on Subscriptions
- This will open a window showing the latest videos you’ve viewed and what subscribed YouTube channel played them. Now, click on Manage
- Now, you’ll see a list of all the YouTube channels you’re subscribed to. Next to each channel is a button to unsubscribe from that channel, so simply press the Subscribed button to cancel your subscription
- Close the window once you’re done unsubscribing to the unwanted channels
Channels in this list are arranged in alphabetical order and not in the order in which you subscribed to them.
2] Using the Inspect Element
Now, onto the second method. This is a little technical, so you’re required to be precise with your steps. You can use the Inspect Element to automate the process and unsubscribe from all your YouTube channels in one go. Here’s what you need to do:
Open the subscribed channels list as you have done in the first method. Scroll your way down to the last channel to load all the channels on your screen. Now, right-click on the screen and select Inspect (or Inspect Element).
Then, click on the Console tab from the array of tabs on top. Copy and paste the following code on the bottom of the Console window and press enter:
/**
* Youtube bulk unsubsribe fn.
* Wrapping this in an IIFE for browser compatibility.
*/
(async function iife() {
// This is the time delay after which the "unsubscribe" button is "clicked"; Tweak to your liking!
var UNSUBSCRIBE_DELAY_TIME = 2000
/**
* Delay runner. Wraps `setTimeout` so it can be `await`ed on.
* @param {Function} fn
* @param {number} delay
*/
var runAfterDelay = (fn, delay) => new Promise((resolve, reject) => {
setTimeout(() => {
fn()
resolve()
}, delay)
})
// Get the channel list; this can be considered a row in the page.
var channels = Array.from(document.getElementsByTagName(`ytd-channel-renderer`))
console.log(`${channels.length} channels found.`)
var ctr = 0
for (const channel of channels) {
// Get the subsribe button and trigger a "click"
channel.querySelector(`[aria-label^='Unsubscribe from']`).click()
await runAfterDelay(() => {
// Get the dialog container...
document.getElementsByTagName(`yt-confirm-dialog-renderer`)[0]
// and find the confirm button...
.querySelector(`#confirm-button`)
// and "trigger" the click!
.click()
console.log(`Unsubsribed ${ctr + 1}/${channels.length}`)
ctr++
}, UNSUBSCRIBE_DELAY_TIME)
}
})()
You will observe YouTube channels being unsubscribed one after the other.
If the process is stopped at any point, you can just rerun the code till the subscription list is cleared out.
TIP: You might want to subscribe to our TWC YouTube Channel for the best in the world of Windows.
How do you clear all history on YouTube?
Another very frequently asked query about YouTube is how its search history can be cleared out, and it has a very simple process in place. On your YouTube app, click on the library button and open YouTube settings. Here, you’ll see an option to clear YouTube history. Similarly, on your computer, you’ll see a history option of the left-side options pane. Click on it and select ‘Clear all watch history’.
Can Internet history be recovered after being deleted?
People believe that nothing is ever fully deleted from the Internet, and that is partly true. If you want to go back and retrieve the internet history that you’ve deleted, several things can be of help to you as a System Restore point or a Desktop Search Program. You can even make use of cookies to trace back your deleted browsing history.
We hope that this article was able to guide you through the process of unsubscribing YouTube channels in bulk and that you will not have any issues with it in the future.