Amazon Wishlist item user-comments / user-notes - fix

Fixes user-unfriendly WishList layout changes, made by Amazon in January 2025.

  1. // ==UserScript==
  2. // @name Amazon Wishlist item user-comments / user-notes - fix
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Fixes user-unfriendly WishList layout changes, made by Amazon in January 2025.
  6. // @author dhaden
  7. // @match https://www.amazon.co.uk/*
  8. // @match https://www.amazon.com/*
  9. // @grant GM_addStyle
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. GM_addStyle // 1st change
  17. (`.awl-ul-keyword-item-truncated-text {
  18. font-size: 16px !important;
  19. white-space: normal;
  20. padding-bottom: 3px;
  21. `);
  22.  
  23. GM_addStyle // 2nd change
  24. (`.a-size-small a-color-secondary awl-ul-keyword-item-truncated-text {
  25. font-size: 16px !important;
  26. white-space: normal;
  27. padding-bottom: 3px;
  28. }
  29. `);
  30. })();