iPhone 12 Pro 128GB MacBook Pro (13-inch, 2020, i7, 16GB, 1TB)
Irritant is dit ja, 'Disable Images', 'Disable CSS' en 'Disable Extensions' zijn (oa) ook verdwenen. Onmisbaar bij snel debuggen.
Dit was een van de redenen waarom ik Safari zo fijn vond als development browser.
Ik zoek nog naar een oplossing....
Screenshot uit het menu van Safari 16.5.1:
Dit was een van de redenen waarom ik Safari zo fijn vond als development browser.
Ik zoek nog naar een oplossing....
Screenshot uit het menu van Safari 16.5.1:
:fill(white):strip_exif()/f/image/QUgdOS072TiU1ouLDyD3xpjX.png?f=user_large)
[ Voor 36% gewijzigd door zolda op 05-10-2023 21:44 ]
Ik heb in ieder geval nog niks gevonden
iPhone 12 Pro 128GB MacBook Pro (13-inch, 2020, i7, 16GB, 1TB)
Heb dan zelf maar een AppleScript ineen geflansd.
Het is niet mooi, maar het werkt, en het doet:
- Zet Javascript uit
- Refresh het browser window
- Zet Javascript terug aan
Het is niet mooi, maar het werkt, en het doet:
- Zet Javascript uit
- Refresh het browser window
- Zet Javascript terug aan
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| tell application "System Events" tell application process "Safari" set frontmost to true keystroke "," using command down tell window 1 click button "Security" of toolbar 1 of it click checkbox 1 of group 1 of group 1 of it keystroke "w" using command down keystroke "r" using command down end tell end tell end tell tell application "System Events" tell application process "Safari" set frontmost to true keystroke "," using command down tell window 1 click button "Security" of toolbar 1 of it click checkbox 1 of group 1 of group 1 of it keystroke "w" using command down end tell end tell end tell |
iPhone 12 Pro 128GB MacBook Pro (13-inch, 2020, i7, 16GB, 1TB)