Why Nostr? What is Njump?
2024-10-02 09:30:40
in reply to

zirias (on snac) on Nostr: Sure. I've now scripted a bit for #tampermonkey, achieving similar: ...

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:
Author Public Key
npub1w96l7dwwzzmd6taq8qzhgh80hdsad2y0shrank8whyrksa2fkwasz99l6c