Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

How can I disable url previews that pop up when the cursor hovers over url links (say, on a wikipedia page)?

  • 1 답장
  • 1 이 문제를 만남
  • 5 보기
  • 최종 답변자: cor-el

more options

Bring up a wikipedia web page. Hover cursor over blue url link. Link underlines immediately and seconds later pops up an annoying display to cover nearby area. How can I disable this (IMHO) terrible distracting functionality? - Thanks

Bring up a wikipedia web page. Hover cursor over blue url link. Link underlines immediately and seconds later pops up an annoying display to cover nearby area. How can I disable this (IMHO) terrible distracting functionality? - Thanks

모든 댓글 (1)

more options

Such pop-ups are generated by JavaScript on a web page. Maybe a content blocking extension can suppress these pop-ups on hover. It should also be possible to hide them via code in userContent.css.


Add code to the userContent.css file.


@-moz-document domain(en.wikipedia.org){div.mwe-popups-container {display:none ! important;}}