The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Mac::PopClip::Quick::Role::Apps - App list controlling when extension is available

SYNOPSIS

    package Mac::PopClip::Quick::Generator;
    use Moo;
    with 'Mac::PopClip::Quick::Role::Apps';
    ...

DESCRIPTION

Configure which Apps the extension will / will not be available in.

ATTRIBUTES

blocked_apps

Array of bundle identifier strings (e.g. com.apple.TextEdit) of applications for which this extension's actions should not appear.

By default it contains an empty array, meaning no value will be set in the plist.

required_apps

Array of bundle identifier strings of applications (e.g. com.apple.TextEdit) that this extension's actions will appear in.

By default it contains an empty array, meaning no value will be set in the plist.

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Mark Fowler.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

SEE ALSO

Mac::PopClip::Quick is the main public interface to this module.

This role is consumed by Mac::PopClip::Quick::Generator.