How to disable facebook hotkeys with Chrome extension?

前端 未结 3 1058
南旧
南旧 2020-12-08 12:45

I have created a Chrome extension that uses the hotkeys [Alt]+[0...9] only to discover facebook uses the same hotkeys. Is there any way possible my extension could disable f

3条回答
  •  [愿得一人]
    2020-12-08 13:08

    This is how you can do it using jQuery

    Remove all shortcuts for any webpage:

    $('[accessKey]').attr('accessKey','')
    

提交回复
热议问题