And here we have the script to focus on the search field for
@LandesarchivBW
https://github.com/FlominatorTM/greasemonkey/blob/main/Landesarchiv-BW.js

And here we have the script to focus on the search field for
@LandesarchivBW
https://github.com/FlominatorTM/greasemonkey/blob/main/Landesarchiv-BW.js
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
https://github.com/FlominatorTM/greasemonkey/blob/main/LEO-BW.js
So halte ich im #Browser meine #MultiColumn-Ansicht clean und sauber:
Wenn eine Spalte gelesen, dann einfach auf den Tropfen drücken und die Spalte ist leer.
#qutebrowser with python-adblock and some nice #greasemonkey -scripts.
https://qutebrowser.org
https://pypi.org/project/adblock/
https://greasyfork.org
Is it wrong to enjoy working on DNS servers?
It’s just so nice meditating on order and consistency in so much chaos.
Oeps, ik ben erachter gekomen dat #nextcloud met #vue is geschreven. En dan voldoet het simpel zetten van de .value property niet om een invoerveld een waarde te geven.
Ik heb nu wat extra statements toe gevoegd in het #userscript: https://github.com/technetium/user-scripts/blob/master/nextCloudCalendar.user.js nu werkt het zoals ik wil
[FR]
Arrivée ici début 2025, big up aux @admin de Piaille.fr ! #introduction :
Tombée dans la marmite #OpenSource en 2000, je me nourris de commandes #bash. Fichiers texte, #grep et ses jolies #regex, #ansible, #git, #greasemonkey, les tests auto et la supervision sont tes amis.
Cordes frottées, grattées et frappées, sons soufflés, chantés ou beatboxés, sons électro ou scratchés me touchent. Rien de tel qu'une bonne soirée à jammer / à enregistrer pour un beatmaker / à débarquer sur scène pour accompagner quand il manque un instrumentiste / à repiquer des morceaux entiers sur papier à l'ancienne / à improviser avec les enfants
Engagée #AMAP et pro #CNV
If you happen to use #Narwhal as your #reddit client of choice, I made a little something if your iOS browser can load #UserScripts.
Omdat ik toch op de een of andere manier moet aangeven wat mijn #NextCloud server is en ik dacht dat ik dat wel met een #GreaseMonkey script zou kunnen regelen.
Heb ik dit maar helemaal geregeld in een #UserScript : https://github.com/technetium/user-scripts/blob/master/nextCloudCalendar.user.js (1/2)
#DeGoogle
From left to right: #violentmonkey #greasemonkey #firemonkey #tampermonkey
You can read more about all the differences between #userscript managers here: https://erosman.github.io/firemonkey/src/content/help.html
Das #ZDF hat seine #Mediathek und URLs aktualisiert.
Daraufhin habe ich jetzt mein #Greasemonkey Skript aktualisiert, mit dem man den ZDF-Player per #Tastatur steuern kann:
https://greasyfork.org/de/scripts/460318-zdf-player-with-keyboard
Beispiel für ein Video, das mit dem #UserScript funktioniert:
https://www.zdf.de/play/shows/bares-fuer-rares-104/bares-fuer-rares-vom-18-maerz-2025-100
Cursortasten links / rechts: 10 Sekunden zurück und vorspringen.
p - play oder pause
f - full screen
If you want to replace the driving direction links on #Geocaching pages from #Google to #OpenStreetMap , you can use the #GreaseMonkey script I just created: https://github.com/technetium/user-scripts/raw/refs/heads/master/osmdirections.user.js
#DeGoogle
소프트웨어를 만들고 있어요。 크롬。 폭스 브라우저。 자바 스크립트。 언어 학습용。 한국。 일본。 동。 언어。 대체 버튼。 버튼
(x, c, v, g, q, a, w, s, b,)
단일 문자 버튼。 특수 검색。#java #language #chome #firefox #webbrowser #java #addon #greasemonkey
Sometimes one just cannot find the right #extension for the browser, only to realize that one already has one of the most powerful #addon (#greasemonkey) out there and with a little bit of #javascript magic, one can create the desired outcome.
Here we go, a very quick-and-dirty userscript for greasemonkey to hide posts in friendica that are filtered...
```
// ==UserScript==
// @name Friendica hide filtered items
// @version 1
// @grant none
// @include friends.chasmcity.net/*
// ==/UserScript==
var snapResults = document.evaluate("//div[contains(@class, 'media')]/div/div/p[starts-with(normalize-space(.),'Filtered by rule: ')]/../../..",
document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i = snapResults.snapshotLength - 1; i >= 0; i--) {
var elm = snapResults.snapshotItem(i);
// do stuff with elm
elm.style.display = "none";
}
```