this post was submitted on 28 Jun 2023
101 points (100.0% liked)

/kbin meta

639 readers
1 users here now

Magazine dedicated to discussions about the kbin itself. Provide feedback, ask questions, suggest improvements, and engage in conversations related to the platform organization, policies, features, and community dynamics. ---- * Roadmap 2023 * m/kbinDevlog * m/kbinDesign

founded 1 year ago
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 24 points 1 year ago (5 children)

Highly recommend both the script Kbin Federation Awareness and kbin social add home-instance name to username. Makes it a lot easier to tell where things are originating from at a glance!

[–] [email protected] 6 points 1 year ago (2 children)

The former takes people from other domains and makes their posts green text on green background. The colors are manually set and not reflective of any magazine styles or the like, but I have no idea why rgba(20, 45, 20, 1.0) is the color someone chose. I recommend anyone who wants that script edit line#41 to something like GM_addStyle('[data-is-federated-content="true"] { background-color: #EEE; }');, but even then this is a bit annoying to have to do manually.

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago) (1 children)

It works on dark theme (I use only dark).

On dark it's light (white) text on dark green background, and it looks fine (I would prefer black or similar, but this works).

Your edit breaks dark design because you get white/grey background.

[–] [email protected] 2 points 1 year ago (1 children)

I can't read shit on comments now with the script that colors comments based on federation

[–] [email protected] 1 points 1 year ago (1 children)
[–] [email protected] 2 points 1 year ago (1 children)

My font is black with that script. It's likely another script messing with this. I'll investigate.

[–] [email protected] 1 points 1 year ago

I have only this script, so mine is vanilla.

Could be mish mash of script styles

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago) (1 children)

I went a bit farther and used the built in variable to set color, as well as setting the font weight down to match the "n hours ago" text, and changing " - " to "@" so that the uesrname matched the standard fediverse string that you can put into search boxes

I'll publish this properly as soon as greasyfork sends me an email to authenticate my new account, but in the meantime here's the source. EDIT: Email has yet to arrive 13 hours later, I doubt it's going to. Anyone interested feel free to publish this somewhere it's easier for people to install.

// ==UserScript==
// @name        kbin social add home-instance name to username (modified)
// @namespace   english
// @description  kbin social add home -instance name to username, modified to match style and fediverse formatting
// @include     http*://*kbin.social*
// @version     1.16
// @run-at document-end
// @require       https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js
// @license MIT
// @grant       GM_addStyle
// ==/UserScript==

$( document ).ready(function() {
    $( ".user-inline" ).each(function() {
        // get username URL and text, then remove username from URL and paste the instance name after username (not if instance is home-instance of kbin.social

        var homeinstance = $(this).attr('href') ;
        var myname = $(this).text().trim();

        var homeinstance2 =  homeinstance.replace( "/u/@" + myname + "@"  , '');

        if( homeinstance2  !=   "/u/" + myname ){ //show nothing if home-instance kbin
            console.log(homeinstance2 );
            $(this).append( "<span>@" +  homeinstance2 +"</span>" );
        }
    });
}); //end each username a href

var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML =   '#content a.user-inline span{color: var(--kbin-meta-text-color); font-weight: 400}' ;

document.getElementsByTagName('head')[0].appendChild(style);

[–] [email protected] 2 points 1 year ago

This is awesome.

Great work! :)

[–] [email protected] 4 points 1 year ago (1 children)
[–] [email protected] 1 points 1 year ago

I had slept on that particular script, thanks for pointing it out!

[–] [email protected] 2 points 1 year ago (1 children)

All of these userscripts are great. I just wish someone would do one to get rid of card view

[–] [email protected] 1 points 1 year ago

You mean the thing you get when you hover over someone's profile pic?

Why!?

[–] [email protected] 2 points 1 year ago (1 children)

Wish I could use these on FF mobile.

[–] [email protected] 8 points 1 year ago (1 children)

You can use Tampermonkey on Firefox mobile to run these scripts. I just installed both of them they work great!

[–] [email protected] 3 points 1 year ago (1 children)

This is the way! Though I personally prefer Violentmonkey.

[–] [email protected] 3 points 1 year ago (2 children)

While I personally agree with you on desktop Firefox, Firefox on Android (or at least most user-facing versions of it), have a curated list of approved addons and it's generally impossible or at best incredibly difficult to install any addons outside that list. Tampermonkey is included but Violentmonkey is not.

[–] [email protected] 2 points 1 year ago

Not incredibly difficult, it just requires 5 min setup, and creating your add-on collection

[–] [email protected] 1 points 1 year ago

If you enable developer mode in android firefox, there is option to add custom addon collection.

It is only couple of steps.

Also firefox beta/nightly has couple of additional addons by default

[–] [email protected] 1 points 1 year ago (1 children)

Not sure if it's just a me problem or a wider known issue but both of those scripts stop working for me when I have infinite scrolling enabled. They work great on the 1st page but when it loads the next page they both stop working.

[–] [email protected] 2 points 1 year ago (1 children)
[–] [email protected] 1 points 1 year ago

Thanks for the heads up!