kbin social add home-instance name to username

kbin social add home-instance name to username 2

当前为 2023-06-15 提交的版本,查看 最新版本

// ==UserScript==
// @name        kbin social add home-instance name to username 
// @namespace   english
// @description  kbin social add home-instance name to username 2
// @include     http*://*kbin.social*
// @version     1.4
// @run-at document-end
// @require       https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js
// @license MIT
// @grant       GM_addStyle
// ==/UserScript==


// Main - redirect test 

 // A $( document ).ready() block.
$( document ).ready(function() {


$( ".user-inline" ).each(function() {
 // $( this ).addClass( "foo" );


$(this).append( " - " + $(this).attr('href') );


});


});