Greasy Fork is available in English.
try to take over the world!
当前为
// ==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();
}
})();