讓頁面滾動更加平滑,看起來更流暢
// ==UserScript==
// @name 平滑滾動
// @version 0.1
// @description 讓頁面滾動更加平滑,看起來更流暢
// @author vincent9579
// @include *
// @run-at document-start
// @resource smoothscroll https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.10/SmoothScroll.min.js
// @grant GM_getResourceText
// @namespace https://greasyfork.org/users/467135
// ==/UserScript==
(function() {
var scr = document.createElement('script');
scr.type = 'text/javascript';
scr.textContent = GM_getResourceText('smoothscroll')
document.head.appendChild(scr);
})();