This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Cari Bantuan

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Pelajari Lebih Lanjut

How to remove the green plus in the search.

more options

the green plus in the screen shown below or this link: https://www.dropbox.com/s/e5sybw8axi9vdky/Knipsel.PNG?dl=0&s=sl. browser.search.showOneOffButtons; false is set to false

the green plus in the screen shown below or this link: https://www.dropbox.com/s/e5sybw8axi9vdky/Knipsel.PNG?dl=0&s=sl. browser.search.showOneOffButtons; false is set to false

Solusi terpilih

You can use a custom style rule to override the special icon and show the standard one. You can apply custom style rules to Firefox's interface using either the Stylish extension or a userChrome.css file. For example (tested on Windows 7):

.searchbar-search-button[addengines="true"] {
  list-style-image: url("chrome://browser/skin/search-indicator.png");
  -moz-image-region: rect(0, 20px, 20px, 0);
  margin-top: 1px;
  margin-bottom: 1px;
  -moz-margin-start: 4px;
  width: 20px;
}
.searchbar-search-button:hover {
  -moz-image-region: rect(0, 40px, 20px, 20px);
}
.searchbar-search-button:hover:active {
  -moz-image-region: rect(0, 60px, 20px, 40px);
}
@media (min-resolution: 1.1dppx) {
  .searchbar-search-button[addengines="true"] {
    list-style-image: url("chrome://browser/skin/search-indicator@2x.png");
    -moz-image-region: rect(0, 40px, 40px, 0);
  }
  .searchbar-search-button:hover {
    -moz-image-region: rect(0, 80px, 40px, 40px);
  }
  .searchbar-search-button:hover:active {
    -moz-image-region: rect(0, 120px, 40px, 80px);
  }
}

I just incorporated that into my custom style rule here, if you're interested in a list with names rather than only icons:

https://userstyles.org/styles/122214/firefox-search-bar-show-engine-names-firefox-43

Baca jawaban ini dalam konteks 👍 1

Semua Balasan (2)

more options

The green plus means that the website offers a search engine as you can see if you click the search engine icon.

The browser.search.showOneOffbuttons pref is no longer supported in Firefox 43+, so modifying this pref won't have effect. You can reset the pref via the right-click context menu to the default value.

You can look at the Classic Theme Restorer to restore the previously used search bar. You will find this feature in the CTR Options/Preferences.

more options

Solusi Terpilih

You can use a custom style rule to override the special icon and show the standard one. You can apply custom style rules to Firefox's interface using either the Stylish extension or a userChrome.css file. For example (tested on Windows 7):

.searchbar-search-button[addengines="true"] {
  list-style-image: url("chrome://browser/skin/search-indicator.png");
  -moz-image-region: rect(0, 20px, 20px, 0);
  margin-top: 1px;
  margin-bottom: 1px;
  -moz-margin-start: 4px;
  width: 20px;
}
.searchbar-search-button:hover {
  -moz-image-region: rect(0, 40px, 20px, 20px);
}
.searchbar-search-button:hover:active {
  -moz-image-region: rect(0, 60px, 20px, 40px);
}
@media (min-resolution: 1.1dppx) {
  .searchbar-search-button[addengines="true"] {
    list-style-image: url("chrome://browser/skin/search-indicator@2x.png");
    -moz-image-region: rect(0, 40px, 40px, 0);
  }
  .searchbar-search-button:hover {
    -moz-image-region: rect(0, 80px, 40px, 40px);
  }
  .searchbar-search-button:hover:active {
    -moz-image-region: rect(0, 120px, 40px, 80px);
  }
}

I just incorporated that into my custom style rule here, if you're interested in a list with names rather than only icons:

https://userstyles.org/styles/122214/firefox-search-bar-show-engine-names-firefox-43