Skip to content

Instantly share code, notes, and snippets.

@rooftopchicken
Last active September 3, 2022 22:47
Show Gist options
  • Save rooftopchicken/d332a4714d34b549b8f73f3b784b24d0 to your computer and use it in GitHub Desktop.
Save rooftopchicken/d332a4714d34b549b8f73f3b784b24d0 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name FV - Quests (no jumping)
// @author msjanny (#7302)
// @match https://www.furvilla.com/quest*
// ==/UserScript==
(function() {
'use strict';
/* globals $:false */
$(document).ready(function(){
$('.table-striped a[href="#"]').each( function() {
$(this).attr('href', '#select');
})
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment