can you disable menu by right click

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wadawadaa
    Member
    • Aug 2017
    • 2

    #1

    can you disable menu by right click

    It's too hard to play when you have to use right click to complete the puzzle and the menu keeps popping up. I have accidentally clicked back too many times.

    Desktop players have to use right-click to make a square yellow (confirmed empty). Is there a way to disable the menu or change it to click twice to make yellow?
    Last edited by wadawadaa; 08-05-2017, 04:45 PM.
  • BflySamurai
    Member
    • Jun 2017
    • 2

    #2
    If you're up to it, you could always disable the right click menu yourself by using a browser extension like GreaseMonkey or TamperMonkey and running this userscript:

    Code:
    // ==UserScript==
    // @name        Numbergrids disable right click menu
    // @namespace    http://tampermonkey.net/
    // @version      0.1
    // @description   Disable the context menu on numbergrids game page.
    // @author       Somebody
    // @match        http://numbergrids.puzzlebaron.com/game.php
    // @grant        none
    // ==/UserScript==
    
    (function() {
        'use strict';
    
        document.oncontextmenu = document.body.oncontextmenu = function() {return false;};
    })();

    Comment

    • wadawadaa
      Member
      • Aug 2017
      • 2

      #3
      Thank you very much
      Now it works perfectly

      Comment

      Working...