FurFling RightClickEnable

Re-enables the right-click menu on FurFling.com

  1. // ==UserScript==
  2. // @name FurFling RightClickEnable
  3. // @namespace https://sharky.pw/
  4. // @version 1.0
  5. // @description Re-enables the right-click menu on FurFling.com
  6. // @author Sharky - https://sharky.pw/ - https://furfling.com/ItsSharky
  7. // @match http://furfling.com/*
  8. // @match https://furfling.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. $('img').unbind('contextmenu');
  16. })();