mcawesomept / pawn takes pawn customizer

// ==UserScript==
// @name         pawn takes pawn customizer
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Adds extra CSS to ptp site
// @author       mcawesomept
// @match        https://pawntakespawn.com/*
// @grant        none
// @license      MIT
// @require     https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';

    var styles = `
    a
    {
    outline: 7px solid yellow;
    }
    `;

    console.log("ptp custom script loaded");
    var styleSheet = document.createElement("style")
    styleSheet.type = "text/css"
    styleSheet.innerText = styles
    document.head.appendChild(styleSheet)

    $("input[disabled]").removeAttr("disabled")
    $("button[disabled]").removeAttr("disabled")

})();