【Tampermonkey】csdn長博文自動展開

// ==UserScript==
// @name         csdn長博文自動展開
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://blog.csdn.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var btn = document.getElementById("btn-readmore-zk");
    if (btn != null){
      btn.click();
    }
})();
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章