Greasy Fork

Greasy Fork is available in English.

打开oschina的文章章节

try to take over the world!

目前为 2019-06-09 提交的版本。查看 最新版本

// ==UserScript==
// @name         打开oschina的文章章节
// @namespace    https://my.oschina.net
// @version      0.2
// @description  try to take over the world!
// @author       You
// ==UserScript==
// @name         打开oschina的文章章节
// @namespace    https://my.oschina.net
// @description  try to take over the world!
// @author       You
// @match        *://my.oschina.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var sideMenuLauncher = document.getElementById('sideMenuLauncher')
    console.log(sideMenuLauncher);
    if(sideMenuLauncher){
        sideMenuLauncher.click();
    }
})();
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var sideMenuLauncher = document.getElementById('sideMenuLauncher')
    console.log(sideMenuLauncher);
    if(sideMenuLauncher){
        sideMenuLauncher.click();
    }
})();