二维码生成器
信息配置区域
日期
显示
日期
年级
显示
年级
类型
显示
类型
生成
下载
清空
个性化配置
大小:1000px
边距:1
标题颜色
内容颜色
背景颜色
显示标题
油猴脚本
// ==UserScript== // @name B站创作中心复制视频链接与标题 // @namespace http://tampermonkey.net/ // @version 2025-01-19 // @description B站创作中心复制视频链接与标题 // @author 成成 // @match https://member.bilibili.com/platform/* // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... function copy(obj) { var o = $(obj).parents('.article-card'); var a = $(o).find('.meta-title').children('a'); var href = $(a).attr('href'); var title = $(a).html(); if (!href.startsWith('http')) { href = 'https:' + href; } var data = href + (href.indexOf('?') == -1 ? '?' : '&') + 'title=' + title; var $temp = $("
"); $("body").append($temp); $temp.val(data).select(); document.execCommand("copy"); $temp.remove(); alert('已复制\r\n' + data); } function aaa() { $('.article-card').find('.meta-view').each(function () { if ($(this).find('.cc-copy-btn').length == 0) { $(this).prepend('
✅复制
'); } }); $('.cc-copy-btn').off().on('click', function() { copy(this); }); setInterval(aaa,1000); } aaa(); })();