kashka / reddit save category hider

// ==UserScript==
// @name         reddit save category hider
// @namespace    https://www.reddit.com/
// @version      0.1
// @description  Hides the category selector that pops up when saving a post/comment if you have gold
// @author       https://www.reddit.com/user/kashka4admin
// @match        https://www.reddit.com/*
// @grant        none
// @run-at       document-end
// @downloadURL  https://openuserjs.org/install/kashka/reddit_save_category_hider.user.js
// ==/UserScript==

(function() {
    'use strict';
    var s = document.createElement("style");
    s.appendChild(document.createTextNode(".hover-bubble.save-selector{display:none!important;visibility:hidden!important}"));
    document.head.appendChild(s);
})();