為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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

被選擇的解決方法

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

從原來的回覆中察看解決方案 👍 1

所有回覆 (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

選擇的解決方法

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