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.