游民星空手机版跳转PC版

try to take over the world!

// ==UserScript==
// @name         游民星空手机版跳转PC版
// @namespace    http://tampermonkey.net/
// @version      0.1
// @author       Ne0
// @match        http*://wap.gamersky.com/*
// @grant        none
// @run-at  document-end
// @description try to take over the world!
// ==/UserScript==

(function(){
    'use strict';

    document.getElementsByClassName("ymw-btns ymw-btns-pc")[0].click();
    window.close();
})();