Page Overscroll

creates element to make page overscrollable.(jQuery)

目前为 2021-12-16 提交的版本。查看 最新版本

// ==UserScript==
// @name         Page Overscroll
// @namespace    -
// @version      0.2
// @description  creates element to make page overscrollable.(jQuery)
// @author       NotYou
// @include      *
// @compatible   Chrome 4.0
// @compatible   Edge 9.0
// @compatible   Firefox 3.5
// @compatible   Safari 3.2
// @compatible   Opera 9.6
// @require      https://code.jquery.com/jquery-1.7.2.min.js
// @grant        none
// @license      GPLv3 (https://www.gnu.org/licenses/gpl-3.0.txt)
// ==/UserScript==

/*

﹀ Change Log ﹀

0.2 Version:
- Less usseless text in CSS
- Shorter HTML code
- Compatible info

*/
$("body").append ( `
<div id=overscroll align=right> <style>
 #overscroll:last-child { padding: 0px 0px 100%; }
 </style> </div>
` );