HackerTrans
トップ新着トレンドコメント過去質問紹介求人

h43z

no profile record

投稿

ImageMagick: From Arbitrary File Read to File Write in Every Policy

pwn.ai
1 ポイント·投稿者 h43z·3 か月前·0 コメント

Show HN: Localhorst – Websites Hosted in the Browser

localhorst.43z.one
3 ポイント·投稿者 h43z·7 か月前·2 コメント

コメント

h43z
·先月·議論
Today frontier models became Groypers.
h43z
·7 か月前·議論
Right click, view source?
h43z
·7 か月前·議論
Firefox is really in a sad state. The politics, ideology is getting worse and the tech is still bad. Kind of crazy that they waste everyones battery and cpu https://b.43z.one/2025-02-12/

Am I the one who is crazy and nitpicking here?
h43z
·7 か月前·議論
Did I understand that correctly that I will be able to get a certificate for an IP?
h43z
·12 か月前·議論
If you want to navigate websites more with your keyboard I created a dead simple extension. All it injects is this tiny snippet into each site.

    addEventListener('keydown', event => {
      if(event.key !== 'Enter')
        return
    
      elementWithSelection = getSelection().anchorNode?.parentElement
    
      if(!elementWithSelection)
        return
    
      elementWithSelection.click()
      getSelection().empty()
    })
This allows you to use the native CTRL+f and / search basically like the ' search.

The ' search let's you "click" on links by pressing enter.

The snippet let's you do the same for the other searches too so you can navigate the modern web where often navigations and actions are behind buttons and sometimes even divs (not just links). Unfortunately you can't activate those without this little hack.

The extension will be available at https://addons.mozilla.org/en-US/firefox/addon/click-on-sele... soon (after mozilla approves).

I use this trick in a slightly bigger extension too https://github.com/h43z/jkscroll/blob/main/content-script.js...