https://github.com/ryanslikesocool/axtoolbox
Extensions and conveniences for macOS accessibility APIs.
https://github.com/ryanslikesocool/axtoolbox
accessibility macos swift
Last synced: about 2 months ago
JSON representation
Extensions and conveniences for macOS accessibility APIs.
- Host: GitHub
- URL: https://github.com/ryanslikesocool/axtoolbox
- Owner: ryanslikesocool
- License: mit
- Created: 2024-12-13T21:19:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-24T21:06:41.000Z (over 1 year ago)
- Last Synced: 2025-05-22T23:13:42.875Z (about 1 year ago)
- Topics: accessibility, macos, swift
- Language: Swift
- Homepage:
- Size: 150 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# AXToolbox
Extensions and conveniences for
[macOS accessibility APIs]( https://developer.apple.com/documentation/applicationservices/carbon_accessibility ).
## NOTICE
**This package is under development and not considered production-ready.**
Breaking changes are common, documentation is incomplete, and support is limited. Use at your own risk.
---
## Installation (Swift Package Manager)
Add the following entry to your package dependencies...
```swift
.package(url: "https://github.com/ryanslikesocool/AXToolbox.git", from: "0.0.6"),
```
...and your target dependencies.
```swift
.target(
name: "MyTarget",
dependencies: [
"AXToolbox",
]
),
```
---
## Documentation
[Quick Start Guide]( Sources/AXToolbox/Documentation.docc/Articles/QuickStart.md )
Most of this package is documented with
[DocC]( https://www.swift.org/documentation/docc/ ).
To view documentation in Xcode, select `Product > Build Documentation` from the menu bar.
## Dependencies
| Dependency | Reason |
| - | - |
| [DeclarativeCore]( https://github.com/ryanslikesocool/DeclarativeCore ) | Shared declarative code. |