Can I add a keyword while making a bookmark?
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)
選擇的解決方法
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; }
Thanks, worked perfectly.