自动展开云栖社区

自动展开云栖社区的文章

当前为 2020-03-20 提交的版本,查看 最新版本

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

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

setTimeout(jumptoread, 2000);

})();