contentEditable

Applies contentEditable when F7 is pressed

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

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 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         contentEditable
// @version      1.1
// @description  Applies contentEditable when F7 is pressed
// @match        *://*/*
// @grant        none
// @namespace https://greasyfork.org/users/117222
// ==/UserScript==

var j=118;
// Set "j" to any keyCode you wish. 
// KeyCode 118 is the [ F7 ] key.

(function() {
	var a=false,b=document.body;
    window.addEventListener('keydown',function(e){
		if(e.keyCode==j){  
			if(!a){
				b.setAttribute('contentEditable',"");
				b.setAttribute("spellcheck","false");
			}else{
				b.removeAttribute('contentEditable');
				b.removeAttribute('spellcheck');
			}
			a=!a;
		}
	});
})();