您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Using Firefox's private mode Wordpress's backend displays a popup for hints again and again. This script clicks the disable button for you.
// ==UserScript== // @name Wordpress-UserData-Manipulator // @namespace https://greasyfork.org/de/users/228374-lynx // @version 0.3 // @description Using Firefox's private mode Wordpress's backend displays a popup for hints again and again. This script clicks the disable button for you. // @author LYNX // @match *://*/wp-admin/* // @grant none // @run-at document-idle // ==/UserScript== /*global $: false */ (function() { 'use strict'; var button; button = document.querySelector("button.nux-dot-tip__disable"); if( button ) button.click(); button = document.querySelector("div.edit-post-welcome-guide button"); if( button ) button.click(); })();