Page Overscroll

creates element to make page overscrollable.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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>
`)