您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fixes user-unfriendly WishList layout changes, made by Amazon in January 2025.
当前为
- // ==UserScript==
- // @name Amazon Wishlist item user-comments / user-notes - fix
- // @namespace http://tampermonkey.net/
- // @version 1.0
- // @description Fixes user-unfriendly WishList layout changes, made by Amazon in January 2025.
- // @author dhaden
- // @match https://www.amazon.co.uk/*
- // @match https://www.amazon.com/*
- // @grant GM_addStyle
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- GM_addStyle // 1st change
- (`.awl-ul-keyword-item-truncated-text {
- font-size: 16px !important;
- white-space: normal;
- padding-bottom: 3px;
- `);
- GM_addStyle // 2nd change
- (`.a-size-small a-color-secondary awl-ul-keyword-item-truncated-text {
- font-size: 16px !important;
- white-space: normal;
- padding-bottom: 3px;
- }
- `);
- })();