// ==UserScript==
// @name YouTube: Hide Watched Videos
// @namespace http://www.globexdesigns.com/
// @version 2.5
// @description Hides watched videos from your YouTube subscriptions page.
// @author Evgueni Naverniouk
// @grant GM_addStyle
// @include http://*.youtube.com/*
// @include http://youtube.com/*
// @include https://*.youtube.com/*
// @include https://youtube.com/*
// @require https://code.jquery.com/jquery-3.1.1.slim.min.js
// @downloadURL none
// ==/UserScript==
// To submit bugs or submit revisions please see visit the repository at:
// https://github.com/globexdesigns/youtube-hide-watched
// You can open new issues at:
// https://github.com/globexdesigns/youtube-hide-watched/issues
(function (undefined) {
// Enable for debugging
var __DEV__ = false;
// Set defaults
localStorage.YTHWV_WATCHED = localStorage.YTHWV_WATCHED || 'false';
GM_addStyle(`
.YT-HWV-WATCHED {
display: none !important;
}
.YT-HWV-BUTTON {
background: transparent;
border: 0;
color: #888888;
cursor: pointer;
height: 40px;
outline: 0;
margin-right: 8px;
padding: 0 8px;
width: 40px;
}
.YT-HWV-BUTTON svg {
height: 24px;
width: 24px;
}
.YT-HWV-BUTTON:focus,
.YT-HWV-BUTTON:hover {
color: #FFF;
}
.YT-HWV-MENU {
background: #F8F8F8;
border: 1px solid #D3D3D3;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
display: none;
font-size: 12px;
margin-top: -1px;
padding: 10px;
position: absolute;
right: 0;
text-align: center;
top: 100%;
white-space: normal;
z-index: 9999;
}
.YT-HWV-MENU-ON { display: block; }
.YT-HWV-MENUBUTTON-ON span { transform: rotate(180deg) }
`);
var visibilityIcon = '';
var visibilityOffIcon = '';
// ===========================================================
var debounce = function (func, wait, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
var later = function() {
timeout = null;
if (!immediate) func.apply(context, args);
};
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
};
// ===========================================================
var findWatchedElements = function () {
var watched = $('.ytd-thumbnail-overlay-resume-playback-renderer');
if (__DEV__) console.log(`[YT-HWV] Found ${watched.length} watched elements`);
return watched.filter(function (i, bar) {
return bar.style.width && parseInt(bar.style.width, 10) > 0;
});
};
// ===========================================================
var findParentByClass = function(el, cls) {
while ((el = el.parentElement) && !el.classList.contains(cls));
return el;
};
// ===========================================================
var findButtonTarget = function () {
// Button will be injected into the main header menu
return $('#container #end #buttons');
};
// ===========================================================
var isButtonAlreadyThere = function () {
return $('.YT-HWV-BUTTON').length > 0;
};
// ===========================================================
var addClassToWatchedRows = function () {
if (localStorage.YTHWV_WATCHED !== 'true') return;
// If we're on the HIstory page -- do nothing. We don't want to hide
// watched videos here.
if (window.location.href.indexOf('/feed/history') >= 0) return null;
// [TODO] If we're on the Trending page -- we don't support it yet.
if (window.location.href.indexOf('/feed/trending') >= 0) return null;
$(findWatchedElements()).each(function (i, item) {
// "Subscription" section needs us to hide the "#contents",
// but in the "Trending" section, that class will hide everything.
// So there, we need to hide the "ytd-video-renderer"
var row, gridItem;
if (window.location.href.indexOf('/feed/subscriptions') > 0) {
// For rows, hide the row and the header too. We can't hide
// their entire parent because then we'll get the infinite
// page loader to load forever.
row = item.closest('#grid-container');
row = $(row).add($(item.closest('#dismissable.ytd-shelf-renderer')).children('.grid-subheader'));
gridItem = item.closest('.ytd-grid-renderer');
} else if (window.location.href.match(/.*\/videos$/)) {
// Channel "Videos" section needs special handling
row = item.closest('.ytd-grid-renderer');
} else {
row = item.closest('ytd-video-renderer');
}
// If we're in grid view, we will hide the "grid" item,
// otherwise we'll hide the item row
var itemsToHide = gridItem ? $(gridItem) : $(row);
// If this is the first row in the list, then we can't hide it entirely,
// otherwise it will also hide the menu. So, we'll have to hide various
// inner components instead.
const hasMenu = itemsToHide.find('.menu-container.shelf-title-cell .yt-uix-menu-container').length > 0;
if (hasMenu) {
var itemToHide = itemsToHide;
itemsToHide = itemToHide.find('.expanded-shelf').add(itemToHide.find('.branded-page-module-title'));
}
itemsToHide.addClass('YT-HWV-WATCHED');
});
};
// ===========================================================
var removeClassFromWatchedRows = function () {
$('.YT-HWV-WATCHED').each(function (i, item) {
$(item).removeClass('YT-HWV-WATCHED');
});
};
// ===========================================================
var addButton = function () {
if (isButtonAlreadyThere()) return;
// Find button target
var target = findButtonTarget();
if (!target) return;
// Generate button DOM
var icon = localStorage.YTHWV_WATCHED === 'true' ? visibilityIcon : visibilityOffIcon;
var button = $('');
// Attach events
button.on("click", function () {
var value = localStorage.YTHWV_WATCHED === 'true' ? 'false' : 'true';
localStorage.YTHWV_WATCHED = value;
if (value === 'true') {
addClassToWatchedRows();
$(this).html(visibilityIcon);
} else {
removeClassFromWatchedRows();
$(this).html(visibilityOffIcon);
}
});
// Insert button into DOM
target.prepend(button);
};
var run = debounce(function () {
if (__DEV__) console.log('[YT-HWV] Running check for watched videos');
removeClassFromWatchedRows();
addClassToWatchedRows();
addButton();
}, 250);
// ===========================================================
// Hijack all XHR calls
var send = XMLHttpRequest.prototype.send;
XMLHttpRequest.prototype.send = function (data) {
this.addEventListener("readystatechange", function () {
if (
// Anytime more videos are fetched -- re-run script
this.responseURL.indexOf('browse_ajax?action_continuation') > 0
) {
setTimeout(function () {
run();
}, 0);
}
}, false);
send.call(this, data);
};
// ===========================================================
var observeDOM = (function() {
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var eventListenerSupported = window.addEventListener;
return function(obj, callback) {
if (__DEV__) console.log('[YT-HWV] Attaching DOM listener');
// Invalid `obj` given
if (!obj) return;
if (MutationObserver) {
var obs = new MutationObserver(function (mutations, observer) {
if (mutations[0].addedNodes.length || mutations[0].removedNodes.length) {
callback(mutations);
}
});
obs.observe(obj, {childList: true, subtree: true});
} else if (eventListenerSupported) {
obj.addEventListener('DOMNodeInserted', callback, false);
obj.addEventListener('DOMNodeRemoved', callback, false);
}
};
})();
// ===========================================================
if (__DEV__) console.log('[YT-HWV] Starting Script');
// YouTube does navigation via history and also does a bunch
// of AJAX video loading. In order to ensure we're always up
// to date, we have to listen for ANY DOM change event, and
// re-run our script.
observeDOM(document.body, run);
run();
}());