Greasy Fork is available in English.
在控制台打印网页标题
当前为
// ==UserScript==
// @name 打印网页标题
// @namespace czzonet
// @version 1.0.0
// @description 在控制台打印网页标题
// @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==
// 等待页面加载完毕
window.onload = function () {
console.log(document.title)
}