Shortcut to toggle Watchlist - tradingview.com

11/17/2023, 8:26:39 PM

  1. // ==UserScript==
  2. // @name Shortcut to toggle Watchlist - tradingview.com
  3. // @namespace Violentmonkey Scripts
  4. // @match https://www.tradingview.com/chart/*/
  5. // @grant none
  6. // @version 1.0
  7. // @author -
  8. // @description 11/17/2023, 8:26:39 PM
  9. // @require https://cdn.jsdelivr.net/npm/@violentmonkey/shortcut@1
  10. // ==/UserScript==
  11.  
  12. // Toggle watch when command|window key + letter b is clicked.
  13. // Just change m-b to your desired key combo.
  14. // To find the key combo,
  15. // 1. go to https://violentmonkey.github.io/vm-shortcut/
  16. // 2. Press your key combo
  17. // 3. The webpage will show the key combo. Copy that and replace 'm-b'
  18. VM.shortcut.register('m-b', () => {
  19. document.querySelector('[aria-label="Watchlist, details and news"]').click();
  20. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址