A modern, high-performance userscript that transforms standard HTML select elements into searchable, keyboard-friendly dropdowns. Designed specifically for the Impex Cube platform to enhance productivity and user experience.
- π Fuzzy Search: Powerful search algorithm that matches even with typos or partial strings.
- β¨οΈ Keyboard Navigation: Full support for arrow keys, Enter, and Escape for a seamless workflow.
- π¨ Modern Aesthetics: Clean, professional UI with smooth transitions and clear visual feedback.
- π Performance Optimized: Lightweight implementation with debounced search and efficient DOM updates.
- π Smart Positioning: Automatically detects screen edges to prevent menus from being cut off.
- π·οΈ Contextual Info: Shows value codes alongside text for quick identification.
- Install a userscript manager like Tampermonkey or Greasemonkey.
- Click here to install: dropdown_userscript.js
- Navigate to any
impexcube.inpage to see the enhanced dropdowns in action.
The script uses a custom fuzzy matching algorithm that prioritizes exact matches and word boundaries while allowing for flexible subsequence matching. The UI is built using vanilla CSS and JavaScript, ensuring zero dependencies and maximum compatibility.
- Exact Match: Highest priority (Score: 100)
- Starts-with: High priority (Score: 80)
- Word Boundary: Medium priority (Score: 70)
- Strict Fuzzy: Low priority (Score: 40-50, requires >90% character density)
Developed by Quantavil. Released under the MIT License.