Skip to content

Instantly share code, notes, and snippets.

@stripedpurple
Last active September 5, 2019 00:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stripedpurple/702391c41f69c77707d28cb8a26975e4 to your computer and use it in GitHub Desktop.
Save stripedpurple/702391c41f69c77707d28cb8a26975e4 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name snahp bas64
// @version 0.4
// @description try to take over the world!
// @author vcoba
// @match https://forum.snahp.it/viewtopic.php*
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
(function (){
$(document).ready(function(){
$('dl.unhide.hidebox dd').each(function() {
var v = window.atob($(this).text())
$(this).html(`<a href="${v}" target="_blank">${v}</a>`)
})
})
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment