forked from AmineB/ycombinator-keys
Compare commits
3 Commits
da49811d97
...
e04ab7aacc
Author | SHA1 | Date | |
---|---|---|---|
e04ab7aacc | |||
87fa270ae4 | |||
1d291e6003 |
@ -5,7 +5,7 @@
|
||||
// @match *://news.ycombinator.com/*
|
||||
// @icon https://gitea.amine-bouabdallaoui.fr/AmineB/ycombinator-keys/raw/branch/main/icons/48.png
|
||||
// @grant none
|
||||
// @version 9
|
||||
// @version 10
|
||||
// @author AmineB
|
||||
// @description Ycombinator keyboard nav.
|
||||
// @downloadURL https://gitea.amine-bouabdallaoui.fr/brian6932/ycombinator-keys/raw/branch/main/keyboard-watcher.user.js
|
||||
@ -21,6 +21,9 @@ let
|
||||
selected = -1,
|
||||
lastCollapsed
|
||||
const
|
||||
input = new Set()
|
||||
.add('INPUT')
|
||||
.add('TEXTAREA'),
|
||||
// This is a Firefox only option. For some reason older versions of Firefox can't set outline: none.
|
||||
focusInvisible = { __proto__: null, focusVisible: false },
|
||||
isComment = () => query[selected].classList.contains('comtr'),
|
||||
@ -35,6 +38,8 @@ const
|
||||
query[selected].lastChild.firstChild.firstChild.focus(focusInvisible)
|
||||
},
|
||||
keydown = event => {
|
||||
if (input.has(globalThis.document.activeElement.tagName))
|
||||
return
|
||||
switch (event.key) {
|
||||
case 'j':
|
||||
const lastIndex = query.length - 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user