YouTube已经过去十年左右动员的内容在很大程度上。用户可以订阅其中,他们享受的内容渠道,从而使他们更容易有机会获得他们感兴趣的东西。由于有对渠道的数量没有上限,你最终订阅,我们常常发现自己被订阅的渠道很多,我们不主动观察。这可以创建一个有点骚动,可以是令人沮丧的。在这篇文章中,我们将演示如何从你在一次订阅所有YouTube渠道退订
如何从所有的YouTube频道退订一次
- Via的Subscriptions Manager
- 使用Inspect Element
1] Via的Subscriptions Manager
首先,稍长时间的方式做到这一点是使用您的YouTube.com account的订阅经理。这个过程不是自动的,但它给你所有你的选项从他们退订沿订阅的频道列表,这样你就可以过滤掉不想要的
- First件事首先,与YouTube account开放YouTube.com and log要清理
- 在左窗格中端选项,点击订阅
- 这将打开,显示您浏览过的最新视频,什么订阅YouTube通道发挥他们的窗口。现在,点击管理
- 现在,你会看到你订阅的所有YouTube频道列表。接下来给每个通道是一个按钮从该通道退订,所以只需按Subscribed button取消订阅
- 关闭窗口一旦你完成退订不需要的频道
在此列表中通道按字母顺序排列,而不是在你订阅的顺序
2]使用Inspect Element
现在,在第二方法。这是一个小的技术,所以你需要的是精确的与您的步骤。您可以使用Inspect Element在一气呵成从所有的YouTube频道的process and unsubscribe自动化。这是您需要做的:
打开订阅的频道列表,你在第一种方法做了。 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渠道被对方后退订之一
如果进程停止在任何时候,你可以重新运行该代码,直到subscription list被清除出去
提示:您可能想订阅我们的TWC YouTube Channel最好在Windows世界
你如何清除YouTube所有的历史?
约YouTube另一种非常常见的查询是其search history如何被清除出去,它在一个地方非常简单的过程。在您YouTube app,点击库按钮,打开YouTube设置。在这里,你会看到一个选项来清除YouTube history。同样,您的计算机上,你会看到左侧的选项面板中的history option。 Click它并选择“所有Clear手表history”
可以Internet history被删除后恢复?
人们相信,没有什么是以往任何时候都完全从Internet删除,这是一定的道理。如果你想回去和检索您已经删除了internet history,几件事情可以帮助你作为一个System Restore point或桌面搜索Program。您甚至可以使用cookies追溯您删除浏览历史记录
我们希望这篇文章能够引导你通过批量退订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.