Page Overscroll

creates element to make page overscrollable.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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