Como faço para remover a entrada do menu "ver lista de bolso" em "Marcadores"?
Isso depende da versão do Firefox que você está executando.
Firefox 38.0.5 +
New versions of Firefox (38.0.5 and up) have Pocket built into the toolbar and bookmark menu. If you prefer not to use Pocket for Firefox, follow these steps to disable it.
Remove Pocket from your toolbar or menu
Removing Pocket from your toolbar or menu will disable it:
Versões mais antigas do Firefox
Adicione o seguinte código ao arquivo userChrome.css
.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#menu_pocket, #menu_pocketSeparator,
#BMB_pocket, #BMB_pocketSeparator {
display:none !important;
}
Veja também:
http://kb.mozillazine.org/userChrome.css http://kb.mozillazine.org/Editing_configuration
The preferred way to disable Pocket is to keep browser.pocket.enabled set to true and move the Pocket toolbar button to the Customize palette (right-click: Remove from Toolbar/Menu).
The Pocket code only adds the menu items if the button is not in the customize palette.
https://support.mozilla.org/kb/disable-pocket-firefox
Bug 1163917 - The built-in Pocket is NOT completely disabled if Pocket is already installed and used as an add-on
Source Como faço para remover a entrada do menu "ver lista de bolso" em "Marcadores"?