Greasy Fork is available in English.

打开oschina的文章章节

try to take over the world!

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

(function() {
    'use strict';

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