eupolicy.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
This Mastodon server is a friendly and respectful discussion space for people working in areas related to EU policy. When you request to create an account, please tell us something about you.

Server stats:

212
active users

#tampermonkey

0 posts0 participants0 posts today

I was too annoyed by having to click the search field at @LEOBW every time I visit the site before being able to write my search term. Therefore I created a #GreaseMonkey script, that will automatically click the search field when visiting the site, so I could type right away, without my hands having to leave keyboard. Probably next: @LandesarchivBW

github.com/FlominatorTM/grease

GitHubgreasemonkey/LEO-BW.js at main · FlominatorTM/greasemonkeyGreasemonkey scripts for various purposes. Contribute to FlominatorTM/greasemonkey development by creating an account on GitHub.
I love this so much. It's pretty much a GUI for #tampermonkey, offering an easier way for #blind folks to find elements on a webpage and do things to them. Yes, you could do the same things directly by just writing JavaScript yourself. But this is much, much faster, and requires a bit less knowledge. It took me less than 30 seconds to turn all the story titles on fanfiction.net into headings. Labeling a button, or making other small changes would be just as fast. The typos and slightly incorrect English put me off at first; especially the word "blinds" for blind people felt weird and derogatory. apparently the author is from #Cameroon, though, so maybe that's standard there. stsolution2.org/WebAccessibilizer/ #a11y #accessibility #screenreader
stsolution2.orgWebAccessibilizer- A web javascript to help blind to make html web pages more accessible

🔧 Neues Userscript: **Mastodon Hide Interacted Posts**

Blendet Beiträge aus, die ihr schon ⭐ geliked oder ♻️ geboostet habt – automatisch & mit UI-Schalter (persistierend). Hilft bei Fokus & Übersicht, v. a. bei Endlos-Scroll.

Feedback willkommen und erwünscht!

➡️ github.com/phpmacher/mastodon-

GitHubGitHub - phpmacher/mastodon-hide-interacted-posts: A Tampermonkey script that hides posts, the user already interacted withA Tampermonkey script that hides posts, the user already interacted with - phpmacher/mastodon-hide-interacted-posts

I bought some hard drives from #Newegg yesterday and once again fell into the trap of forgetting to uncheck the subscribe checkbox they check by default and starting to get #spam from them within minutes of checking out.
No more! Now #Tampermonkey will uncheck the box for me:
blog.kamens.us/2025/02/11/tamp
@didathingclub #DidAThingClub #DarkPatterns

Something better to do · Tampermonkey script: no, Newegg, I don’t freakin’ want to subscribe
More from jik

#today I need to call #Alpinestars about buying a spare pair of batteries for my heated gloves so I can use them on longer winter #motorcycle trips. I know where on their website their c.s. phone number is located, so I visit the site to look it up.
The site was working fine yesterday, but unfortunately today it's reloading over and over ad infinitum without fully displaying, so the phone number is inaccessible.
#tech #WebDev #curl #TamperMonkey #BurpSuite (hashtag foreshadowing!)
🧵1/8

Replied in thread
Sure. I've now scripted a bit for #tampermonkey, achieving similar:

    GM.xmlHttpRequest({
method: 'GET',
url: 'https://codeberg.org/voron/snac-style/raw/branch/master/modern-dark.css',
onload: function(response) {
if (response.readyState == 4 && response.status == 200) {
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = response.responseText;
document.getElementsByTagName('style')[0].replaceWith(style);
}
}
});
But that's more of a workaround. E.g. I don't always have "my" browser with me 😉

CC: @stefano@bsd.cafe @stesnac@snac.bsd.cafe @grunfink@comam.es

If it annoys anyone else that the columns in the #Mastodon advanced view aren't resizable, I made a little jigger that lets you stretch and shrink them to your heart's content (with help from @zmotions@mastodon.online)
greasyfork.org/en/scripts/4541

==Update== I've also made a script that moves the Navigation bar, search and compose message elements of the Mastodon advanced web interface out of their own column and on to the top of the first content column, freeing up space.
greasyfork.org/en/scripts/4680
==Update to the update (2024/07)== the re-arrange-o-don script doesn't seem to work well with recent versions of the Mastodon web interface, if you have trouble composing toots, I'd suggest you don't use it. The resize-o-don script still works fine.

You need to install a #UserScript addon like #TamperMonkey (tampermonkey.net ) or similar to run it, and then you can install my script from greasyfork: greasyfork.org/en/scripts/4541
#HackMastodon