Auto Refresh
当前为
// ==UserScript==
// @name Youtube 載入完自動重新整理
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Auto Refresh
// @include https://www.youtube.com/*
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==
window.onload = function() {
if(!window.location.hash) {
window.location = window.location + '#loaded';
window.location.reload();
}
}