parent
f125825b30
commit
74205a001a
@ -0,0 +1,6 @@
|
|||||||
|
### about:config
|
||||||
|
|
||||||
|
browser.backspace\_action = 2
|
||||||
|
_This config option disables the backspace key from acting as the back button. Chrome disabled this a while ago and I feel it was a good move._
|
||||||
|
|
||||||
|
|
@ -0,0 +1,15 @@
|
|||||||
|
/* Hides the close button all tabs. I think this looks cleaner and ends with less ctrl+shift+Ts
|
||||||
|
* To use:
|
||||||
|
* - Go to about:support and locate 'Profile Folder' item. Open this location in file explorer.
|
||||||
|
* - Create a new folder called 'chrome' and enter it.
|
||||||
|
* - Save this file in that folder.
|
||||||
|
* - Navigate to about:config in Firefox and look for the toolkit.legacyUserProfileCustomizations.stylesheets option.
|
||||||
|
* - Double click this option to set it to true.
|
||||||
|
* - Restart firefox and enjoy no more close tab buttons cluttering up your tabs.
|
||||||
|
*
|
||||||
|
* Source: https://support.mozilla.org/en-US/questions/1288218
|
||||||
|
*/
|
||||||
|
/*** Hide Tab Close buttons ***/
|
||||||
|
.tabbrowser-tab .tab-close-button {
|
||||||
|
visibility: collapse !important;
|
||||||
|
}
|
Loading…
Reference in new issue