특정 웹페이지에서 글꼴군을 바꾸는 방법 - Firefox 55.x.xx

특정 웹페이지에서 글꼴군을 바꾸는 방법 - Firefox 55.x.xx

Windows 10에서는 ClearType이 꺼져 있고 웹 페이지의 일부 글꼴이 보기 흉하게 보입니다. 예를 들어 PayPal 사이트에서는 다음과 같습니다 "PayPal-Sans".
여기에 이미지 설명을 입력하세요
그러나 "Arial"또는 "Tahoma"훌륭해 보입니다. "Arial"Firefox 55.x.xx에서 CSS나 일부 스크립트를 사용하여 특정 글꼴을 다른 유형으로 바꾸는 것이 가능합니까 ? 몇 가지 해결 방법을 시도했지만 Firefox 55 버전에서는 더 이상 작동하지 않는 것 같습니다.

이것방법이 작동하지 않습니다: 파일
에서 :./Profiles/some_profile.default/chrome/userContent.css

@font-face {
font-family: 'PayPal-Sans';
src: local('Arial');
} 

내 목표는 다음과 같이 보이게 만드는 것입니다. "Arial"글꼴:
여기에 이미지 설명을 입력하세요

답변1

마지막으로 임시 해결책을 찾았습니다. :)

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain(www.paypal.com) { 

  * {
    font-family: "Arial" !important;
  }

  .moreIcon,
  .vx_icon vx_icon-small,
  .vx_icon-arrow-right-half-small,
  .mer-notifications-nav-icon,
  .mer-settings-nav-icon {
    font-family: "paypal-vx-icons" !important;
  }

  span.caret,
  a.secondaryButton,
  .icon, .caret {
    font-family: "consumer-icons" !important;
  }
}

이제 PayPal이 다시 괜찮아 보입니다 :)

관련 정보