try to take over the world!
当前为
// ==UserScript==
// @name YT 'views' as number only
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author narcolepticinsomniac#7875
// @include /https?://www\.youtube\.com/watch\?v=.*/
// @grant none
// ==/UserScript==
new MutationObserver((_, observer) => {
const viewCount = document.querySelector('.view-count');
if (viewCount) {
const viewText = viewCount.textContent.replace(/.*?(\d.*\d).*/, '$1');
viewCount.textContent = viewText;
observer.disconnect();
}
}).observe(document, {childList: true, subtree: true});