搜尋 Mozilla 技術支援網站

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

Learn More

Can I add a keyword while making a bookmark?

  • 2 回覆
  • 2 有這個問題
  • 18 次檢視
  • 最近回覆由 MrJosh211

more options

Is it possible to enter a keyword while I'm making a bookmark? I usually want to add a keyword when I make a bookmark, but the window only lets me enter "Name", "Folder", and "Tags". In order to add a keyword, I have to finish making the bookmark, and then "Show All Bookmarks" and find my new bookmark and add the keyword that way.

Is it possible to enter a keyword while I'm making a bookmark? I usually want to add a keyword when I make a bookmark, but the window only lets me enter "Name", "Folder", and "Tags". In order to add a keyword, I have to finish making the bookmark, and then "Show All Bookmarks" and find my new bookmark and add the keyword that way.

被選擇的解決方法

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#editBMPanel_keywordRow { visibility: visible !important; display: -moz-grid-line !important; }
從原來的回覆中察看解決方案 👍 1

所有回覆 (2)

more options

選擇的解決方法

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#editBMPanel_keywordRow { visibility: visible !important; display: -moz-grid-line !important; }
more options

Thanks, worked perfectly.