Text Expander - Cross Platform

100+
Downloads
Content rating
Everyone
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image

About this app

Features supported,
1. No internet used, maximum privacy
2. Text Expander feature with espanso configuration support
3. Compare two text sequences
4. Replace certain values in text
5. Check if your text contains a certain value
6. Convert to upper case or lower case

Ignoring case or otherwise is supported for all options. This PRO version does not contain any ads and all features are unlocked by default.
--------------------

This app uses the Accessibility API!

This app uses Accessibility API to detect whether a saved shortcut is typed and replace it with a corresponding phrase.

--------------------------------

NOTE: Espanso configuration YML files will take a few tries to parse correctly. Try removing some matches, and make sure it's compliant with the YML specs. Some working examples are provided below for your convenience to copy and paste. Please also note that only the following extensions are supported -> date, clipboard, random and echo. Finally, note that not all espanso/rust chrono date time formats are supported. Supported formats are,
- %Y, %m, %b, %B, %h, %d, %e, %a, %A, %j, %w, %u, %D, %F, %H, %I, %p, %M, %S, %R, %T, %r
You can further customize date time formats by referring to the C# DateTime.ToString() method documentation from Microsoft.
--------------
Working YML snippet:

global_vars:
- name: global
type: echo
params:
echo: hello from global vars
matches:
- trigger: global_test
replace: Global var test {{global}}
- trigger: :date
replace: '{{date}}'
vars:
- name: date
type: date
params:
format: dd/MM/%y
- trigger: :cursor
replace: '
$|$
'
- trigger: :yesterday
replace: '{{date}}'
vars:
- name: date
type: date
params:
format: dd/MM/%y
offset: -86400
- trigger: :time
replace: '{{time}}'
vars:
- name: time
type: date
params:
format: HH:mm
- trigger: :rand
replace: '{{random_choice}}'
vars:
- name: random_choice
type: random
params:
choices:
- "hello"
- "hi"


--------------
This is an open source app. Source code can be viewed at https://github.com/lochidev/textcomparepro
Updated on
Feb 7, 2024

Data safety

Safety starts with understanding how developers collect and share your data. Data privacy and security practices may vary based on your use, region, and age. The developer provided this information and may update it over time.
No data shared with third parties
Learn more about how developers declare sharing
No data collected
Learn more about how developers declare collection

What's new

- Added espanso's word property feature
- Fixed datetime conversion compatibility bug