Page Overscroll

creates element to make page overscrollable.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name Page Overscroll
// @namespace -
// @version 0.4
// @description creates element to make page overscrollable.
// @author NotYou
// @include *
// @compatible Chrome 4.0
// @compatible Edge 9.0
// @compatible Firefox 3.5
// @compatible Safari 3.2
// @compatible Opera 9.6
// @grant none
// @license GPL-3.0
// ==/UserScript==

/*

﹀ Change Log ﹀

0.4 Version:
- jQuery to Pure JS

0.3 Version:
- Anti Feauture Information
- Less CSS

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

*/

document.querySelector('body').insertAdjacentHTML('beforeend',`
<div id=overscroll><style>
#overscroll {padding: 0px 0px 100%}
</style></div>
`)