-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Description
I know this extension deals with not being able to paste on web forms and such, but there are also the few odd sites where they will unnecessarily block you from right-clicking on pages. Despite how minor this is, I believe having access blocked to context menus is completely useless and adds nothing in terms of securing content served on the page despite being able to open the Inspector Console and view the contents.
This is what some bad actors will typically use to block context menu access;
window.oncontextmenu = function() { return false; }
$('body').bind('contextmenu', function(e) {
return false;
});
$(document).ready(function () {
$('.select2').select2();
});inson1, Hueristic and matfat55
Metadata
Metadata
Assignees
Labels
No labels