Skip to content

Commit 4d54b3a

Browse files
committedAug 3, 2024
1 parent 126f5f3 commit 4d54b3a

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed
 

‎scripts/No-Fullscreen-Dropdown/README.md

-6
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,13 @@ Real fullscreen instead of fullscreen dropdown, very annoying when playing games
1010

1111
### 0.3.1 (2024-05-25)
1212

13-
#### 🐛 Bug Fixes
14-
1513
- Change `event.key` to `event.code`.
1614

1715
### 0.3.0 (2024-05-24)
1816

19-
#### 🐛 Bug Fixes
20-
2117
- Fix `@match` to match all URLs.
2218
- The element request fullscreen will be `documentElement` instead of `body`.
2319

2420
### 0.2.0 (2024-05-24)
2521

26-
#### 🛠 Improvements
27-
2822
- Only toggle when pressing exactly `Shift+F11`.

‎scripts/No-Fullscreen-Dropdown/script.user.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
// ==UserScript==
22
// @name No Fullscreen Dropdown
33
// @namespace https://github.com/tientq64/userscripts
4-
// @version 0.3.1
4+
// @version 0.3.2
55
// @description Real fullscreen instead of fullscreen dropdown, very annoying when playing games. Useful for Microsoft Edge. Press Shift+F11 to toggle fullscreen.
66
// @author tientq64
77
// @icon https://cdn-icons-png.flaticon.com/64/4785/4785776.png
88
// @match *://*/*
99
// @license MIT
1010
// @grant none
11+
// @compatible edge
1112
// @noframes
1213
// @homepage https://github.com/tientq64/userscripts/tree/main/scripts/No-Fullscreen-Dropdown
1314
// ==/UserScript==

‎scripts/No-Fullscreen-Dropdown/script.user.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
// ==UserScript==
22
// @name No Fullscreen Dropdown
33
// @namespace https://github.com/tientq64/userscripts
4-
// @version 0.3.1
4+
// @version 0.3.2
55
// @description Real fullscreen instead of fullscreen dropdown, very annoying when playing games. Useful for Microsoft Edge. Press Shift+F11 to toggle fullscreen.
66
// @author tientq64
77
// @icon https://cdn-icons-png.flaticon.com/64/4785/4785776.png
88
// @match *://*/*
99
// @license MIT
1010
// @grant none
11+
// @compatible edge
1112
// @noframes
1213
// ==/UserScript==
1314

0 commit comments

Comments
 (0)
Please sign in to comment.