We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98a5742 commit 37efbceCopy full SHA for 37efbce
1 file changed
Core/Sources/HostApp/GeneralView.swift
@@ -105,6 +105,24 @@ struct ExtensionServiceView: View {
105
}) {
106
Text("Reveal Extension Service in Finder")
107
}
108
+
109
+ Button(action: {
110
+ let url = URL(
111
+ string: "x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility"
112
+ )!
113
+ NSWorkspace.shared.open(url)
114
+ }) {
115
+ Text("Accessibility Settings")
116
+ }
117
118
119
120
+ string: "x-apple.systempreferences:com.apple.ExtensionsPreferences"
121
122
123
124
+ Text("Extensions Settings")
125
126
127
128
.padding()
0 commit comments