url_clip

url clip

目前为 2022-09-18 提交的版本。查看 最新版本

// ==UserScript==
// @name         url_clip
// @include      *
// @supportURL   https://github.com/sxlgkxk/browser_script/issues
// @version      0.1
// @description  url clip
// @namespace    http://sxlgkxk.github.io/
// @author       sxlgkxk
// @icon         http://sxlgkxk.github.io/im/avatar.jpg
// @license      MIT
// @grant        GM_getValue
// @grant        GM_setValue
// @grant        GM_xmlhttpRequest
// ==/UserScript==

(function () {
	setTimeout(function () {
		// hexo url
		dom = document.createElement('div');
		dom.id = 'url-hexo-container';
		let title='', imageUrl='';
		title = document.title.replace('"', "'");

		if(location.href.startsWith('https://www.bilibili.com/')) {
			imageUrl=document.querySelector('head > meta[itemprop="thumbnailUrl"]').getAttribute('content')
			document.body.prepend(dom);
		}else if(location.href.startsWith('https://www.youtube.com/watch?v=')) {
			imageUrl=document.querySelector('head > meta[property="og:image"]').getAttribute('content')
			container=document.querySelector('#info-contents > ytd-video-primary-info-renderer');
			container.prepend(dom);
		} else {
			document.body.prepend(dom);
		}

		dom.innerHTML = `<span>{%url ${location.href} "${title}" %}</span><br>`
		if(imageUrl)
			dom.innerHTML+=`<span>${imageUrl}</span><br>`
		dom.innerHTML+=`<span>{%endurl%}</span>
			<style>
				#url-hexo-container {
					text-align: center;
					background-color: #ddd;
					color: #000;
					padding: 10px;
					font-size: 20px;
					text-shadow: none;
				}
			</style>
		`

	}, 1000*2)

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址