Last active
September 3, 2022 22:47
-
-
Save rooftopchicken/d332a4714d34b549b8f73f3b784b24d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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