python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
EXTENSIONS: convert Firefox extension to Safari extension
I am trying to convert my firefox extension to a safari extension. To do that, I used these codes xcrun safari-web-extension-converter /path/to/extension .
In my package json, I wrote a script :
"...
Ceren Keklik
Votes: 0
Answers: 0
How to set width in popup.css of Safari Extension in macOS?
The same width setting worked in iOS. However, in macOS, the width setting is ignore.
:root {
color-scheme: light dark;
}
body {
width: 400px;
padding: 10px;
font-family: system-ui;
...

Owen Zhao
Votes: 0
Answers: 0
Safari Extension Icon Become Very Small in macOS 12.3
The icon size was fine on previous version of macOS. After installed macOS 12.3, the icon became very small. The icon I used was 34x34 in pixel. I tried to use large icon, size 256x256 in pixel. Howev...

Owen Zhao
Votes: 0
Answers: 1
How to get the state(enabled/disabled) of IOS Safari extension?
This SO is about how to get the state of a macOS safari extension. Wondering how it can be done with IOS ? (In its app container aka via swift)
P.S: the mac code won't work on IOS as it gives:
Cannot ...

Daniyal dehleh
Votes: 0
Answers: 0