Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

How can I relace the Folder Icon with a more discriptive Icon

  • 1 ответ
  • 2 имеют эту проблему
  • 6 просмотров
  • Последний ответ от cor-el

more options

Bookmark toolbar: When you add a folder, it uses a "folder" Icon. How I replace that "folder Icon with a more Discriptive Icon, so I don't need to add text?

Bookmark toolbar: When you add a folder, it uses a "folder" Icon. How I replace that "folder Icon with a more Discriptive Icon, so I don't need to add text?

Все ответы (1)

more options

There are extensions that can replace the favicon of a bookmark, but AFAIK then there aren't extensions that can replace a folder icon.

The only way to do that is via code in userChrome.css and specify an icon for each folder.
Place the icons in the same chrome folder as the userChrome.css file. The folder name is case sensitive and need to be exactly the same as specified for the bookmarks folder


#personal-bookmarks .bookmark-item[container][label="Folder_Name"] {
 list-style-image:url('folder-icon.png')!important;-moz-image-region:auto!important;}

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

You can use the ChromEdit Plus extension to have easier access to the customization files.