BandcampEnhancementSuite
BandcampEnhancementSuite copied to clipboard
Improved Keyboard Shortcuts
~,
and .
jump forward/backward 1s~
CMD
+ Forward Arrow
: jumps forward 10s
CMD
+ Back Arrow
: jumps backwards 10s
CMD
+ Up Arrow
: increase volume by 10%
CMD
+ Down Arrow
: decrease volume by 10%
w
: toggle waveform display
additionally, the values above should be adjustable with user config
this shows an interesting way of keeping track of multiple keypresses. Effectively registers that a key is pressed in a dictionary or array so that it persists as it's pressed. Then you can check different combinations.
Makes the above VERY easy to implement.
would love a way to set custom keyboard shortcuts. was used to Firefox extension which had A <- and D -> for prev and next track. and skipping to the middle of the track with a mouse. faster digging :P
@tadasmajeris sorry for the delay. I fully agree -- custom shortcuts is definitely a must have. I think I have most of the infrastructure to support it but I just haven't had any time to work on this yet. However, I will make an effort to try to get this going.
might be possible to just use "Commands":
https://developer.chrome.com/docs/extensions/reference/commands/
this should allow users to re-bind keyboard commands without having to build my own UI for it