Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robrop/FullScreen-FirefoxMac
Firefox / Mac real full screen and hotkey
https://github.com/robrop/FullScreen-FirefoxMac
firefox macos mozilla-firefox userchrome userchrome-styles userchromecss userchromejs userchromejs-scripts
Last synced: 11 days ago
JSON representation
Firefox / Mac real full screen and hotkey
- Host: GitHub
- URL: https://github.com/robrop/FullScreen-FirefoxMac
- Owner: robrop
- Created: 2020-08-26T15:55:45.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-20T02:46:26.000Z (over 2 years ago)
- Last Synced: 2024-08-01T16:46:02.910Z (3 months ago)
- Topics: firefox, macos, mozilla-firefox, userchrome, userchrome-styles, userchromecss, userchromejs, userchromejs-scripts
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FullScreen-FirefoxMac
## Custom full screen
### Dependency
Follow the instructions from https://pmueller.de/firefox-mac-mit-echtem-vollbild/
Rename `userChrome.css` to `userChromeFullScreen.css`
At the end you should have the file `/profile-folder/chrome/userChromeFullScreen.css`### Customisation
If you have the Bookmarks Toolbar enabled change **line 15** in `userChromeFullScreen.css`.
No Bookmarks Toolbar:
```css
margin-top: calc(-40px - var(--tab-min-height));
```
With Bookmarks Toolbar enabled:
```css
margin-top: calc(-68px - var(--tab-min-height));
```## Install with userChromeJS
### Dependency
Install userChromeJS:
https://github.com/xiaoxiaoflood/firefox-scripts## Install full screen script
Place the `MacFullScreen.uc.js` file in your profile folder.
Path:
`/profile-folder/chrome/`## Hotkey
The defgault hotkey is **Command-Option-Shift-F**
To change the hotkey you have to modify **line 31** and **line 32** in `MacFullScreen.uc.js`.
Key | Modifier
----|----
Command ⌘ | accel
Shift ⇧ | shift
Option ⌥ | alt
Control ⌃ | controlMore information: https://developer.mozilla.org/en-US/docs/Archive/Mozilla/XUL/Tutorial/Keyboard_Shortcuts