tirsden: a creepy child swings on a creepy swing (Default)
tirsden ([personal profile] tirsden) wrote2016-04-29 11:00 am
Entry tags:

Stylish scripts (addon for Firefox)

Just archiving some scripts in case I have to reformat again anytime soon. I found these via Google and they work on Firefox 18 (Windows XP). Update April 2016: added more and some of this no longer works, sadly. I've also updated the post date for this post so I can find it easier. Firefox is now at version 46... eesh.


hide "unsorted bookmarks" (bookmarks menu)

/* Hide "Unsorted Bookmarks" in bookmarks toolbar menu */
#BMB_unsortedBookmarks { display: none !important }


hide "subscribe to this page" (bookmarks menu)

#BMB_subscribeToPageMenuitem,

#BMB_subscribeToPageMenupopup,

#BMB_subscribeToPageMenupopup

{display: none}

#subscribeToPageMenuitem, #subscribeToPageMenupopup {display: none !important; }


hide favorites star in url bar

#urlbar-icons > #star-button
{
display: none !important;
}


put bookmark control menu items at top of bookmark menu:

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

/* move "Show All Bookmarks" to the top of the Bookmarks drop-down list */
#BMB_bookmarksPopup #BMB_bookmarksShowAll {-moz-box-ordinal-group:0}

/* move "Show All History" to the top of the History drop-down list */
#PanelUI-history > * {-moz-box-ordinal-group:3!important}
#PanelUI-history > label.panel-subview-header {-moz-box-ordinal-group:1!important}
#PanelUI-history > #PanelUI-historyMore {-moz-box-ordinal-group:2!important}


didn't end up useful but here it is anyways (hiding the star next to the bookmark list button):

#bookmarks-menu-button toolbarbutton { visibility:collapse !important; }