shortcutShield
nokla4137
A Chrome Manifest V3 extension that lets you block default keyboard shortcut behaviors (Do-Nothing), run user-defined JavaScript (Custom Script), and prevent accidental rapid Enter submissions (Delay Enter). Github: https://github.com/96-kdh/shortcut-shield šÆ Usage š Do-Nothing Rule 1. Open the Do Nothing tab 2. Click + New Command and press your shortcut 3. Enter a URL pattern (must start with http:// or https://) 4. Click Save š Registered shortcuts will be blocked on matching pages. š Custom Script Rule 1. Open the Custom tab 2. Click + New Command and press your shortcut 3. Enter a URL pattern 4. Write your JS snippet in the code editor 5. (Optional) Add a description, then click Save ā” Priority Command: Custom Script > Do Nothing // Example 1: Log the page title console.log(`Title: ${document.title}`); // Example 2: Scroll to top smoothly window.scrollTo({ top: 0, behavior: 'smooth' }); š Delay Enter 1. Open the Extension tab 2. Toggle the switch next to Enter ā±ļø Ignores Enter if pressed within 500ms of the previous key.