// ==UserScript== // @name 自定义油猴脚本 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 调整b站蔡徐坤用户名为社会你坤哥 // @author wutian // @match https://space.bilibili.com/324287009* // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net // @require https://code.jquery.com/jquery-2.1.4.min.js // @grant none // @license MIT // @downloadURL none // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); (function() { 'use strict'; console.log('自定义的油猴脚本,暗武逢天'); window.onload = function(){ $('#h-name').text('社会你坤哥,联系两年半'); } // Your code here... })();