macos_accessibility_client
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

macOS accessibility client

A Node.JS package, in its current state, only provides the functionality to query whether the running application is a trusted accessibility client, and if not, display the following rather well known prompt:

Screenshot of macOS accessibility prompt

More functionality may be added in the future. Feel free to open an issue if you think there's something missing.

How to use:

import { applicationIsTrusted, applicationIsTrustedWithPrompt } from 'macos_accessibility_client'

function query_accessibility_permissions() {
    const trusted = applicationIsTrusted();
    if (trusted) {
        console.log("Application is totally trusted!");
    } else {
        console.error("Application isn't trusted :(");
    }
    return trusted
}

function query_accessibility_permissions_with_prompt() {
    const trusted = applicationIsTrustedWithPrompt();
    if (trusted) {
        console.log("Application is totally trusted!");
    } else {
        console.error("Application isn't trusted :(");
    }
    return trusted
}

Built with napi-rs and macos_accessibility_client crate.

License

Copyright 2021 Victor Aremu

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Package Sidebar

Install

npm i macos_accessibility_client

Weekly Downloads

1

Version

0.0.3

License

MIT

Unpacked Size

158 kB

Total Files

9

Last publish

Collaborators

  • ahkohd