We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to make it inject script into reader view, though it does show counter as been injected
URL pattern
about\:reader\?url=.*
code
(function shortCutSetter() { var previous = document.getElementsByClassName('narrate-skip-previous'); if (previous.length > 0) { if (previous[0].getAttribute('accesskey') == null) { previous[0].setAttribute('accesskey', 'z'); } } var playStop = document.getElementsByClassName('narrate-start-stop'); if (playStop.length > 0) { if (playStop[0].getAttribute('accesskey') == null) { playStop[0].setAttribute('accesskey', 'x'); } } var next = document.getElementsByClassName('narrate-skip-next'); if (next.length > 0) { if (next[0].getAttribute('accesskey') == null) { next[0].setAttribute('accesskey', 'c'); } } })();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Unable to make it inject script into reader view, though it does show counter as been injected
URL pattern
code
The text was updated successfully, but these errors were encountered: