This file contains hidden or 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
| simple .bat application that will copy your userchrome profile from its main location to a backup location. | |
| this cuts out the need for downloading another application | |
| or having to dig through file explorer to copy paste and sort your info | |
| simply download this bat or make it paste the text below in notepad | |
| change the name in the file to your Windows Name and backup location | |
| save it as a .bat file |
This file contains hidden or 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
| /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ | |
| /*refer to video below*/ | |
| /* i wanted to hide every button on the nav bar, unless the nav bar is hovered.. simple right?.. | |
| first, to exclude key buttons. min, max, close, new window, fullscreen, ☰ Menu button, ublock, sidebery. | |
| this is a list of what will NOT be affected. url bar is uneffected. feel free to modify. */ | |
| toolbarbutton:not([id="minimize_dhanush_com-BAP"], [id="close_dhanush_com-BAP"], | |
| [id="new-window-button"], [id="fullscreen-button"], [id="nav-bar-overflow-button"], | |
| [class="titlebar-button titlebar-min"], [class="titlebar-button titlebar-max"], |
This file contains hidden or 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
| /* get extension */ | |
| /* https://addons.mozilla.org/en-US/firefox/addon/close-minimize-and-maximize/ */ | |
| /* this changes the icon for the extension to a simple X */ | |
| #_c5cca7ac-6287-4706-b3a1-b91e9dc4932e_-BAP image{ | |
| list-style-image: url("close.png") !important;} | |
| /* remove your existing titlebar buttons */ | |
| .titlebar-button, .titlebar-buttonbox-container {display: none !important;} /*JUST TAKE IT ALL OUT*/ |
This file contains hidden or 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
| @-moz-document domain("youtube.com") { | |
| yt-icon.ytd-topbar-logo-renderer, | |
| yt-icon.ytd-logo { | |
| fill-opacity: 0; | |
| background: url(chrome/yt.png) center center/100% no-repeat !important; | |
| max-width: 100%; | |
| max-height: 100px; | |
| position: relative !important;} | |
| .ytp-swatch-background-color { background-color: #fffd80 !important; } |
This file contains hidden or 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
| /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
| So you want to colorize your right click menu? | |
| context menu background color | |
| context menu border color (sync border color with background - no ugly border) | |
| text color | |
| hovered item color | |
| last line targets the elements submenus | |
| /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ |
This file contains hidden or 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
| /* Change the icons - an icon for on state, an icon for the off state (optional: use an SVG with context-fill) */ | |
| #ublock0_raymondhill_net-BAP image{ | |
| list-style-image: url("ubon.png") !important; | |
| } | |
| #ublock0_raymondhill_net-BAP[tooltiptext="uBlock Origin (off)"] image{ | |
| list-style-image: url("uboff.png") !important; | |
| } | |
| /* Spacing adjustments to URL Bar - so that any icon placed next to it (Right Side) will sit inside of it */ |
NewerOlder