Greasy Fork

Greasy Fork is available in English.

Wowhead Expand Site

Expands wowhead Site (I'm too lazy to click that by myself xD)

当前为 2017-03-29 提交的版本,查看 最新版本

// ==UserScript==
// @name         Wowhead Expand Site
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Expands wowhead Site (I'm too lazy to click that by myself xD)
// @author       @AcademicoMDP
// @match        *://*.wowhead.com/*
// @grant        none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';
    $(document).ready(function() {
       document.getElementById("header-expandsite").click();
    });
})();