Greasy Fork is available in English.
在控制台打印网页标题打印网页标题和链接的md格式
当前为
// ==UserScript==
// @name 打印网页标题和链接的md格式
// @namespace czzonet
// @version 1.2.6
// @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
// ==/UserScript==
/* 等待页面加载 */
document.onreadystatechange = function (){
if(document.readyState == 'complete'){
console.log('['+document.title+']('+document.URL+')')
}
}
window.addEventListener('DOMContentLoaded',function (event) {
console.log('DOM fully loaded and parsed');
});