Wordpress-UserData-Manipulator

Using Firefox's private mode Wordpress's backend displays a popup for tips again and again. This script clicks the disable button for you.

As of 2019-10-31. See the latest version.

// ==UserScript==
// @name         Wordpress-UserData-Manipulator
// @namespace    https://greasyfork.org/de/users/228374-lynx
// @version      0.1
// @description  Using Firefox's private mode Wordpress's backend displays a popup for tips again and again. This script clicks the disable button for you.
// @author       LYNX
// @match        https://*/wp-admin/*
// @grant        none
// @run-at       document-idle
// ==/UserScript==
/*global $: false */

(function() {
    'use strict';

    var button = document.querySelector("button.nux-dot-tip__disable");
    if( button ) button.click();

})();