Mozilla 도움말 검색

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

Learn More

firefox underlining mispelled text in google searchbar no matter what

more options

i've turned off spellcheck in the normal firefox preferences, I have these values set for about:config spellcheck related things, and no matter what I do, I simply cannot figure out how to get rid of the underlining. does anyone have any solutions? layout.spellcheckDefault 0 services.sync.prefs.sync.layout.spellcheckDefault false services.sync.prefs.sync.spellchecker.dictionary true ui.SpellCheckerUnderlineStyle 0

i've turned off spellcheck in the normal firefox preferences, I have these values set for about:config spellcheck related things, and no matter what I do, I simply cannot figure out how to get rid of the underlining. does anyone have any solutions? layout.spellcheckDefault 0 services.sync.prefs.sync.layout.spellcheckDefault false services.sync.prefs.sync.spellchecker.dictionary true ui.SpellCheckerUnderlineStyle 0
첨부된 스크린샷

선택된 해결법

Okay, turns out it's a feature of Google's search pages. You can suppress it by applying a custom style rule to Google pages using either the Stylish extension or a userContent.css file. Stylish is easier for setup and tweaking, but if you already have a userContent.css file, see #5 below for the code.

(1) Install the extension from https://addons.mozilla.org/firefox/addon/styl-us/

(2) Click its "S" toolbar button and then the Manage button at the bottom

(3) In the left column, click the Write New Style button

(4) Enter any name you like in the name box in the left column

(5) Click in the box on the right and paste this code -- Stylus should pop up an Import form:

@-moz-document url(https://www.google.com/), 
               url-prefix(https://www.google.com/webhp), 
               url-prefix(https://www.google.com/search){
    /* Suppress spell-check marking in the search form (22 Sept 2021) */
    form[action*="/search"] span {
        background-image: none !important;
    }
}


Click "Overwrite Style" and then click the Save button in the left column. (First attached screenshot.)

(6) Test on Google... (Second attached screenshot.)

Success?

Note: This kind of site modification is subject to future failure when Google changes how it does things...

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (5)

more options

I had to make the opposite change. Right-click in the search bar and untick/uncheck "Check Spelling". That will hopefully stick.

more options

TerryN21 said

I had to make the opposite change. Right-click in the search bar and untick/uncheck "Check Spelling". That will hopefully stick.

I tried that, it seems like it's a second type of spellcheck, because it's like when that spellchecking is on the two different underlines are layered, possibly some sort of other more outdated spellchecking?

more options

Is it possible MacOS is somehow involving itself?

more options

jscher2000 said

Is it possible MacOS is somehow involving itself?

I origionally thought that, but it seems to only be happening for google, i've tried DuckDuckgo and bing, both of which do not have this problem.

more options

선택된 해결법

Okay, turns out it's a feature of Google's search pages. You can suppress it by applying a custom style rule to Google pages using either the Stylish extension or a userContent.css file. Stylish is easier for setup and tweaking, but if you already have a userContent.css file, see #5 below for the code.

(1) Install the extension from https://addons.mozilla.org/firefox/addon/styl-us/

(2) Click its "S" toolbar button and then the Manage button at the bottom

(3) In the left column, click the Write New Style button

(4) Enter any name you like in the name box in the left column

(5) Click in the box on the right and paste this code -- Stylus should pop up an Import form:

@-moz-document url(https://www.google.com/), 
               url-prefix(https://www.google.com/webhp), 
               url-prefix(https://www.google.com/search){
    /* Suppress spell-check marking in the search form (22 Sept 2021) */
    form[action*="/search"] span {
        background-image: none !important;
    }
}


Click "Overwrite Style" and then click the Save button in the left column. (First attached screenshot.)

(6) Test on Google... (Second attached screenshot.)

Success?

Note: This kind of site modification is subject to future failure when Google changes how it does things...