YouTube은 지난 10 년 동안 내용을 큰 범위에서 동원했습니다. 사용자는 컨텐츠를 즐기는 채널을 구독하여 그 관심사에 액세스 할 수 있도록 쉽게 사용할 수 있습니다. 채널 수에 뚜껑이 없기 때문에 우리는 종종 우리 자신이 적극적으로 지켜지지 않는 많은 채널에 가입하는 것을 발견합니다. 이것은 실망 스러울 수있는 Ruckus의 약간을 만들 수 있습니다. 이 기사에서는 한 번에 가입 한 모든 YouTube 채널을 모두 탈퇴 할 수있는 방법을 보여줍니다
한 번에 모든 YouTube 채널에서 탈퇴하는 방법
- Via Subscriptions Manager
- Inspect Element를 사용하여
1] Via Subscriptions Manager
첫 번째, 약간 길게 수행하는 방법은 YouTube.com account의 구독 관리자를 사용하는 것입니다. 프로세스는 자동화되지 않지만 프로세스가 구독하는 옵션과 함께 모든 채널 목록을 제공하므로 원하지 않는 것들을 필터링 할 수 있습니다
- First 일이 먼저 YouTube.com and log을 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이 제거 될 때까지 코드를 다시 실행할 수 있습니다
팁 : Windows의 세계에서 최고의 TWC YouTube Channel에 가입하고 싶을 수 있습니다
YouTube에서 모든 역사를 어떻게 지울 수 있습니까?
YouTube에 대한 또 다른 매우 자주 묻는 질문은 search history를 제거 할 수있는 방법이며 매우 간단한 프로세스가 있습니다. YouTube app에서 라이브러리 단추를 클릭하고 YouTube 설정을 엽니 다. 여기서는 YouTube history를 지울 수있는 옵션이 표시됩니다. 마찬가지로 컴퓨터에서 왼쪽 옵션 창의 history option가 표시됩니다. Click 'Clear 모든 시계 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.