RightClick

Allows right click.

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         RightClick
// @name:ru      RightClick
// @namespace    https://vk.com/p.zyryanov/
// @version      0.4
// @description  Allows right click.
// @description:ru  Разрешает правый клик.
// @author       P.Zyryanov
// @include      http*://*/*
// @grant        none
// @license      OSL-3.0
// ==/UserScript==

(function() {
    'use strict';

    document.body.removeAttribute('oncontextmenu');
    document.body.removeAttribute('oncopy');
    document.body.removeAttribute('onselectstart');
    document.oncontextmenu=null;
    document.oncopy=null;
    document.onselectstart=null;

})();