// ==UserScript== // @name 打印网页标题和链接的md格式 // @namespace czzonet // @version 1.2.4 // @description 在控制台打印网页标题打印网页标题和链接的md格式 // @author czzonet // @include *://* // @exclude *://*.eggvod.cn/* // @connect * // @license MIT License // @grant GM_download // @grant GM_openInTab // @grant GM_setValue // @grant GM_getValue // @grant GM_xmlhttpRequest // @grant GM_addStyle // @grant unsafeWindow // @grant GM_setClipboard // @grant GM_getResourceURL // @grant GM_getResourceText // @downloadURL none // ==/UserScript== /* 等待页面加载 */ document.onreadystatechange = function (){ console.log(document.readyState) if(document.readyState == 'interactive'){ console.log('['+document.title+']('+document.URL+')') } }