Greasy Fork

Greasy Fork is available in English.

打印网页标题和链接的md格式

在控制台打印网页标题打印网页标题和链接的md格式

目前为 2020-09-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         打印网页标题和链接的md格式
// @namespace 	 czzonet
// @version      1.1.0
// @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==
// 等待页面加载完毕
window.onload = function () {
console.log('['+document.title+']('+document.URL+')')
}