This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* reduce UI height (for "Use Small Icons" enabled) to avoid wasting vertical space especially on small screens */ | |
#titlebar, #TabsToolbar, #tabbrowser-tabs, #appmenu-button-container, #titlebar-buttonbox { | |
margin-top: -2px !important; | |
} | |
.tabbrowser-tab, .tabs-newtab-button { | |
margin-top: 2px !important; | |
} | |
#navigator-toolbox { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Audio Indicators | |
// @author adisib | |
// @namespace namespace_adisib | |
// @description Show audio indicators (music note) in tabs for Pale Moon browser. | |
// @include * | |
// @grant none | |
// ==/UserScript== | |
(function(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Youtube HD | |
// @author adisib | |
// @namespace namespace_adisib | |
// @description Select a youtube resolution and resize the player. | |
// @version 2024.01.17 | |
// @match https://*.youtube.com/* | |
// @noframes | |
// @grant GM.getValue | |
// @grant GM.setValue |