Greasy Fork is available in English.

自动展开云栖社区

自动展开云栖社区的文章

// ==UserScript==
// @name         自动展开云栖社区
// @namespace    https://java666.cn
// @version      0.2
// @description  自动展开云栖社区的文章
// @author       geekyouth
// @match        https://yq.aliyun.com/articles/*
// @grant        none
// ==/UserScript==

(function() {
    
    var jumptoread = function(){
    document.getElementById("btn-readmore").click();
}

setTimeout(jumptoread, 2000);

})();