Alexa Font Fix

Make the font on the Alexa app site more readable

  1. // ==UserScript==
  2. // @name Alexa Font Fix
  3. // @namespace tech.myip.jess.alexafix
  4. // @version 0.1
  5. // @description Make the font on the Alexa app site more readable
  6. // @author J. Jones
  7. // @match http://alexa.amazon.com/*
  8. // @match http://pitangui.amazon.com/*
  9. // @require https://code.jquery.com/jquery-3.2.1.min.js
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var styleSheet = document.styleSheets[document.styleSheets.length - 1];
  16. styleSheet.insertRule('* { ' +
  17. 'font-family: Arial, sans-serif !important; ' +
  18. 'font-weight: bold; ' +
  19. '}', styleSheet.cssRules.length);
  20. // Your code here...
  21. })();

QingJ © 2025

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