Jump to content

thanasut

Member
  • Posts

    16
  • Joined

  • Last visited

Reputation Activity

  1. Like
    thanasut reacted to reorx in Emoji searcher (the best & simplest ever)   
    Hello there,
     
    I would like to share my emoji workflow with you:
     
    Download link: https://www.dropbox.com/s/z1iipjr1qvykphm/Emoji.alfredworkflow?dl=0

     
    ---
     
    Update 2016-09-01:
    Release a different version with two more functions
    Download link: https://www.dropbox.com/s/wipxjgrtec0vwlt/Emoji%20Full.alfredworkflow?dl=0
    emj: copy emoji character emjimg: copy emoji image emjcode: copy emoji unicode sequence
     
    ---
     
    The difference between this one and any other workflows that also search emoji is that, this one includes all the description and keywords in http://unicode.org/emoji/charts/full-emoji-list.html for search, make it the easiest to get the emoji you want, you don't need to remember the actual name of the emoji character, just type the word in your mind intuitively. As far as I tried, it's really smooth!
     
    And the making of this workflow is also very simple, it just a List Filter -> Copy to Clipboard , the data filled in List Filter is a csv generated from Emoji One's developer toolkit (download here). The code to generate is also simple (it's Python):
    # coding: utf-8 import json import csv with open('emoji.json', 'r') as f: s = f.read() emojis = json.loads(s) toutf8 = lambda x: x.encode('utf8') with open('emoji.csv', 'wb') as csvf: writer = csv.writer(csvf, delimiter=',') for i in emojis: name = i['name'].split('\n')[0] writer.writerow([ toutf8(u'{} ({})'.format(name.lower(), i['keywords'])), toutf8(i['char']), toutf8(i['char']) ]) Whenever new emojis come out in the future, you can get the emoji.json from emojione, run this code, and drag the emoji.csv into this workflow's List Filter.
     
    Hope it helps!
  2. Like
    thanasut reacted to deanishe in Searchio! Auto-suggestion from search engines in different languages   
    Searchio! workflow for Alfred
    Auto-suggest search results from multiple search engines and languages.
     
    There are a few existing workflows that provide auto-suggest results from one or the other search engine, but this includes not only multiple search engines, but also allows you to specify multiple languages/regions for your results.

    Supports the following search engines/websites:
    Google Google Images Google Maps YouTube Wikipedia Wiktionary Amazon eBay DuckDuckGo Bing Yahoo! Ask.com Yandex.ru Naver.com Wikia.com  
    Download and installation
    Download the latest version from the GitHub releases page or Packal.
    Usage
    There are several searches pre-configured. Only some have keywords (i.e. can be used as-is):
    g — Search Google in system (i.e. default) language m — Search Google Maps in system (i.e. default) language gi — Search Google Images in system (i.e. default) language w — Search Wikipedia in system (i.e. default) language wn — Search Wiktionary in system (i.e. default) language a — Search Amazon in system (i.e. default) language. If your system language is English, this will search Amazon.com. Use -l uk in the Script Filter to search Amazon.co.uk or -l ca to search Amazon.ca. yt — Search YouTube in system (i.e. default) language searchio [<query>] — Show settings and list of supported search engines. Currently, the only setting is a toggle to also show the <query> in the results list (default: No). searchiohelp — Open help file in your browser You can add a keyword to (and edit) one of the existing examples or add your own searches. For details on how to do that, see the GitHub page.
     
    Licensing, thanks
    The code in this workflow is released under the MIT Licence.
    The icons belong to the respective search engines.
    This workflow uses the Alfred-Workflow library and docopt (both MIT-licensed).
  3. Like
    thanasut got a reaction from Carlos-Sz in Recent Items 4.3 beta 2 for Alfred 4: Finder Recent Items   
    Thanks!!
  4. Like
    thanasut reacted to Carlos-Sz in Recent Items 4.3 beta 2 for Alfred 4: Finder Recent Items   
    Recent Items for Alfred 3
     
    Download now
  5. Like
    thanasut reacted to Carlos-Sz in Recent Items 4.3 beta 2 for Alfred 4: Finder Recent Items   
    I'll update the workflow for Alfred 3 as soon as possible.
    Thank you.
  6. Like
    thanasut reacted to frankspin in Slackfred: Interact with your Slack channels, groups and IMs   
    Just re-uploaded the file to Packal and my GitHub. Please try again!
  7. Like
    thanasut reacted to frankspin in Slackfred: Interact with your Slack channels, groups and IMs   
    If you're having trouble getting the workflow to work and you're on V2 I am currently working on a solution. The issue is related to exporting a workflow from V3 and trying to have it run on V3.
  8. Like
    thanasut reacted to danieldiekmeier in textexpander import   
    Hey Guys! I am the creator of the script, and I just released it as a web app, so people not familiar with Node should have no problem converting their files: http://alfred.danieldiekmeier.de/

     

    Thanks for your interest! <3

  9. Like
    thanasut reacted to deanishe in Using Application specific hotkeys to paste text   
    This is straightforward to do with a workflow, but you need a Powerpack licence to use/create workflows. I dare say it'd be worth the price for this job alone.

    To do this, first create a workflow.

    Then add a Hotkey trigger (+ > Triggers > Hotkey). Assign your hotkey, and drag the Lightroom application into the list in the Related Apps tab.

    Then add a Run Script action (+ > Actions > Run Script). Set language to "/usr/bin/osascript (AS)" and paste the following in the Script box:
     
    tell application "System Events" to keystroke "Avalanche" Connect the Hotkey box to the Run Script action and you're good to go.

    Repeat 29 more times for your other hotkey-text combinations. (You can copy and paste, then edit the existing actions).
  10. Like
    thanasut reacted to egla in Just another minimalistic Theme [Light, Dark & El Capitan version] - Now with updated Fonts for El Capitan   
    Hey I made another minimalistic theme, as none fit my wishes really well!
     
     
     
     
    JUST ANOTHER MINIMALISTIC THEME
    BIG ALFRED 3 UPDATE
     
     
     
    Minimalistic 3
     

     
     
    Minimalistic 3 Dark Mode
     

     
     
    Minimalistic Light 3
     

     
     
    Minimalistic Dark 3
     

     
    Download
     
    Minimalistic 3
    http://cl.ly/2f102X0w1E1R
     
    Minimalistic 3 Dark Mode
    http://cl.ly/2q2v1O0k2m3E
     
    Minimalistic Light 3
    https://cl.ly/0l3s3D3S0n2k
     
    Minimalistic Dark 3
    http://cl.ly/1Z002A0V0c2e
     
     
     
    Thanks for the more than 10000 downloads!
     
    EDIT: Changed the color of the numbers for better readability for Minimalistic Light 3
  11. Like
    thanasut reacted to Carlos-Sz in Evernote Workflow 9 beta 4 (Alfred 4)   
    Alfred 4
    Read about this workflow below.
     
    This is an update to address the new Alfred 4 data folder (thanks to xilopaint).
    DOWNLOAD Evernote Workflow 9 beta 4 for Alfred 4
     
    Description
    Alfred 3 workflow to search and create notes in Evernote.

    Search

    Keywords
    ens to search in every note field ens @ to search in a selected notebook ens # to search notes with a selected tags You can use ent (search in titles only) or enr (search in reminders) or entodo (search to-do notes) or enrec (search notes updated within a week) or enu (search notes with a source URL) instead of ens.

    You can select multiple tags to fine tune your searching. Just add a second hash sign and select or type the tag e.g. ens #tag1 #tag2 :my query

    In addition, you can select a single notebook then tags too e.g. ent @notebook #tag1 #tag2 :my query

    Note that, if you want to select a notebook and/or tags, the query goes after the colon sign as seen above.

    Actions
    Return key to open the note Shift key to preview the note Option key to set a reminder Control key to paste the note text content to the top most application Function key to open the note URL Command key to append text (from clipboard, selected text or typed) or selected file(s) in Finder. After pressing the Command key a new Alfred window will be shown so you will be able to select the text source and the action: Return key will append without date Option key with append with current date Hint: You can also use the Command key to only add tags to a note. To do so, type or select a tag and don't type anything after the colon then select the source "Type a Note" e.g. enn #tag :

    Note that Alfred Fallback Search is also supported (you have to add it in Alfred 2 Preferences>Features>Default Results, then click Setup fallback results button).

    Create

    Keyword enn

    http://cl.ly/image/3t1e440l1c0Q/enn8.png

    You can optionally type the note title or, for a more complex creation, follow the syntax below:

    @Notebook #tag1 #tag2 !reminder :Title
    @notebook: after typing @ a list of notebooks will be displayed then select one or type it; the default will be used if omitted #tags: after typing # a list of tags will be displayed then select one or type a new one (multiple tags are supported, type each one after a hash sign) !reminder: after typing an exclamation point a list of reminder suggestions will be displayed then select one or type a custom reminder such as in 4 days or 05/01/2014 or 05/01/2014 at 2:00 Title: at the end, after a colon (or the second colon if you are adding time in your reminder) Note that items of the syntax are optional, however the syntax has to end with a colon, with or without typing the note title e.g. #tag1 :

    Note Content Source
    From clipboard From selected text Typed directly in Alfred From Safari or Google Chrome URL From message(s) selected in Mail app From file(s) selected in Finder app: you can create one note with files or one note for each selected files. Alfred File Browser also supported. Type a Note also supports multiple lines and, in this case, the first line will be the title of the note e.g. enn Line 1 /n Line 2 /n Line 3

    Actions
    Return key: create a note Control Key: create a note and open it Command key: append text or file to a note Option key: append text to a note with current date How to Append
    Highlight one of the note content source e.g. From Clipboard Optionally type tags and a reminder e.g. #tag1 #tag2 !tomorrow hold command key and hit return key select a note from the list (search by title only) and hit return key Mail
    Message subject as the note title Message received date as the note creation date Message Link as the note source URL A short header (e.g. sender) A plain text version of the email content  
    Note Templates
     
    Read about templates here.
     
    Preferences

    Bring Alfred and type the keyword enpref:
    Search wildcard: you can set the workflow to automatically use the Evernote search wildcard (*) or you can set the workflow to use only if it is typed (the Manual setting may by faster in a huge note collection).  
    Download Evernote 9 beta 3
    Release date: 99 Jun 2019 Made in OS X 10.13.5 Requires Evernote 7.2 from evernote.com Requires Alfred 3 Download now  
    Download Evernote 9 beta 2
    Release date: 09 Aug 2016 Made in OS X 10.11.5 Requires Evernote 6 from evernote.com Requires Alfred 3 Download now  
    For Alfred 2
     
    Version 8.992 Release date: 20 Feb 2015 Made in OS X 10.10.2 Requires Evernote 6.06 from evernote.com Requires Alfred 2.6 or later Download now  
    What's new?
    9 beta 3: minor code optimizations and updated workflow preferences (enpref keyword) 9 beta 2: bugs fixed and Evernote API updated 9 beta 1: Alfred 3 support 8.991: Evernote 6.06 initial support 8.9: Yosemite beta and note templates support 8.7: interface bugs fixed 8.6: enn issue fixed Improved reminder time support e.g. Tomorrow at 2:00 Added support for tags that start with a hash sign e.g. #Home Added support for tags that start with an at sign e.g. @Work Added support for notebooks that start with an at sign e.g. @Notes Workflow should be faster in most of cases When appending from a search result now you can hold Option key to include current date Type a Note supports multiple lines (first line will be the title) e.g. enn Line 1 /n Line 2 New Keyword enl and its hotkey to load the last search query Added support for some of Alfred 2.3 new features Workflow version history here.
  12. Like
    thanasut reacted to vitor in Download Media — Download video and audio from web pages   
    Usage

    Download video from a plethora of online sources via the dv keyword. Download audio with da. Your clipboard and frontmost browser tab are checked for links.


    ↩: Download. ⌘↩: Download full playlist. ⌥↩: Toggle adding to Watch List.
    Alternatively, download with the Universal Action.



    Check download progress via the dp keyword.


    ⌘↩: Restart download. ⌃↩: Cancel.
    ⤓ Install on the Alfred Gallery | Source
     
  13. Like
    thanasut reacted to emamuna in KAT Search (search on kickass torrent)   
    http://www.packal.org/workflow/kat-search
     
    KAT Search
     
    Description
    The workflow can be used to search and download torrents from KickAss.
    It's easy to use, you can search a torrent using the keyword kat <query to search>.
    Then a list with the following informations about the results will appear:
    Number of seeders Number of leechers Total size of the torrent Number of files included in the torrent The extension of the file Informations 4 and 5 are not available after switching to the new mirror. Maybe they will add that functionality again.
     
    When you select one result, by pressing Enter on it, the magnet link will be used to open your default torrent client.
    Look at the screenshots and the animated gif below.
     
    Hot news
    As you know the founder of kat.cr was arrested in Poland, for more infos and eventually sign the petition click on the link below!
    Free Artem Vaulin - Sign Petition Now!
    The script is update to use a new domain. Download it from packal!
    ----------------------------------------------
    State
    Author Emanuele Munafò
    Version 1.3
    Last release 30/07/2016
    Email ema.muna95@gmail.com
    ----------------------------------------------
    Changelog and update
     
    Switched to the mirror kickass.cd because kat.am was closed. [30/07/2016] Switched to the mirror kat.am because kat.cr was closed. [26/07/2016] Added alt modifier to copy the magnet link to clipboard  ----------------------------------------------
    Screenshots
     

     

    ----------------------------------------------
    Download
    Click here to download from Packet
     
    ----------------------------------------------
    Thanks:
    Kat.cr Deanishe (alfred-workflow) ----------------------------------------------
    Bug
    You can contact me here or by email if there is something wrong with the workflow.
    ----------------------------------------------
    Additional note I decline any responsibility for copyright infringing material or any damage occurred by any files downloaded.
  14. Like
    thanasut reacted to emamuna in KAT Search (search on kickass torrent)   
    There is a real beautiful workflow for TPB:
    https://github.com/Sheraff/piratebay-alfred-workflow
    Far better than mine!
  15. Like
    thanasut reacted to ctwise in Assigning shortcuts   
    Settings -> Advanced -> Apps Matching -> Full fuzzy match from word boundary
     
    Then PS will match Photoshop.
     
    Or, you can create a simple workflow that connects the keyword 'PS' to Photoshop and 'LR' to Lightroom.
  16. Like
    thanasut reacted to ctwise in Menu Search   
    The previously released menu search workflow has been universally panned due to the poor performance of the AppleScript that dumps menu contents. The caching of results worked very poorly as a stop-gap. So, I've re-written the menu extraction in Objective-C. It's much faster. The source is here: https://github.com/ctwise/alfred-workflows
     
    You can download the workflow directly from http://tedwi.se/u/db
     
    To recap, this workflow lets you trigger an application's menu's from Alfred. For example, if you're in iTerm and trigger Alfred, you can type 'm view' to get a list of all menu items with 'view' in the name or that belong to the 'view' menu. Selecting one of the entries triggers the corresponding menu entry in iTerm. In one sense it gives you a command-line to control your applications.
     
    The workflow has the beginnings of shortcut key display as well but it's currently disabled due to numerous bugs.
     
    Update: 
     
    v1.3 - Provide error message when assistive devices isn't checked.
    v1.2 - Skip the Safari History and Bookmarks menus. They take too long.
    v1.1 - I fixed the bug with Alfred not remembering selections and added AlleyOop support. Download from the same link.
     
    Requires OS/X 10.7+.
     
    ---
     
    You need to turn on OS/X assistive device support to allow this workflow to operate. You can find the checkbox in Settings. The settings page looks very different in recent versions of OS/X but the wording for providing access for assistive devices is very similar no matter what OS/X version you're using. Here's an image of the settings from the latest version of Mountain Lion.
     

  17. Like
    thanasut reacted to AlfredFreak in Gmail in Chrome Workflow   
    Hi, I made this for myself and thought I'd share.  
    I'm a heavy Gmail user, and I think Gmail works best in Chrome. I wanted to always have a Gmail tab open, and to *not* open multiple Gmail tabs when I use the workflow from other applications.   I also wanted the Gmail tab to always be pinned to the left. It can't be done via AppleScript, so I'm using a Chrome Extension called Auto Pin URL. Get it if you want the Gmail tab pinned left (it's not required for the workflow to function. Without it, your Gmail tab will be *wherever* in Chrome):  
    https://chrome.google.com/webstore/detail/auto-pin-url/heodenddhgffdcadgghkghlcjjikaahf  
    Here is the URL you will need to add to Auto Pin URL: https://mail.google.com/mail/u/0/  
    Here's the features of the workflow (keyword / explanation):  
    gm - GMail. Whatever you're doing, this brings Chrome to the front and activates the Gmail tab. If there's no Gmail tab, it will create one (and Auto Pin URL will move it to the far left). I have assigned it Shift-Control-z  
    gmn - GMail New. Open a new compose window. (This is the lone exception in that it opens a new tab. I don't like the new compose window you get by typing c in gmail.) I have assigned Shift-Control-x. This tab auto closes once you send the mail.  
    gms - GMail Search  
    gmf - GMail From. Search for sender  
    gmt - Gmail To. Search for recipient  
    gmc - GMail Contacts. Search Gmail contacts  
    gmgi - GMail Inbox ("gi" is Gmail's default Inbox shortcut)  
    gmgt - GMail Sent. Sent items. ("gt" is Gmail's default Sent Mail shortcut)  
    gmga - GMail All Mail. All mail. ("ga" is Gmail's default All Mail shortcut)  
    NOTE: I made this for my Google Apps account. Haven't tested it on a regular gmail account, but I bet it works fine. I'm no AppleScript expert, so my code may be crappy. Buy hey, this workflow works great for me.  
    Download here: http://s000.tinyupload.com/?file_id=75677841761488282960  
  18. Like
    thanasut reacted to CapnAverage in Create new task in OmniFocus inbox   
    Hey everyone!
     
    Just dipping my toe into the proverbial waters of Alfred 2 workflows, and managed to come up with this workflow.
     
    It creates a new named task in your OmniFocus inbox – it checks if OmniFocus is open and, if it's not, opens it so you don't have to.
     
    It's not particularly complicated or elegant, but I hope it's useful to a couple of you out there!
     
    DOWNLOAD: New OmniFocus Inbox Task Workflow
  19. Like
    thanasut reacted to rhyd in Search Omnifocus: free text search your Omnifocus data   
    What is this?
     
    This is a workflow that allows you to run free text searches against your OmniFocus data.
     
    Why would I need this?
     
    Well, it's difficult to quickly search for, say, a task using OmniFocus' own search box since OmniFocus restricts the results to the current perspective or selection. Other people have noticed this too.
     
    Where can I get it?
     
    From Packal or GitHub.
     
    How do I use it?
     
    The README has full instructions but, here's a starter for 10. Search for all tasks within OmniFocus (irrespective of status) with .s

  20. Like
    thanasut reacted to mrmidi in Search Google Chrome History   
    Chrome History - Version 1.0
      Open Recent Google Chrome Webpages   Introduction:   This Workflow will use PHP to make a cached copy of Google Chromes SQLite History file. Then you can easily search through your history by keyword.   Example Usage:   ch  will return all your browsers history with the latest at the top.   ch alfred  will return all pages in your history that have the word alfred in the URL or Page Title.     Alfred 2 Workflow Here:
     
    https://github.com/manifestinteractive/alfred-workflows/tree/master/Chrome%20History
     
  21. Like
    thanasut reacted to frankspin in Slackfred: Interact with your Slack channels, groups and IMs   
    Attention: I am no longer actively working on this Workflow. I don't have the time to dedicate to it anymore and provide the kind of updates I'd like. If you want to fork and contribute back to it, please do so via GitHub. I appreciate all the support and kind words shown by users for making this.
     
    slackfred
    =========

    Alfred workflow to interact, and perform various functions with the service Slack
     


    Alfred workflow to interact, and perform various functions with the service [slack](http://slack.com/). Now with multi-team support!

    I'm currently in the process of getting this updated to work with multiple organizations where possible, as well as adding some extra workflow options like private groups, stars and a few more things. Stay tuned!

    ## Getting started
    1. Install slackfred by visiting the download page in Github or via the [Packal page](http://www.packal.org/workflow/slackfred)
    2. Open alfred and type `slt`, then hold `cmd` (apple key) and press `enter`. This will open up the Slack API page. Then look for your team (make sure you're logged in) near the bottom. Next to your team name will be your token.
    3. Launch alfred and re-run `slt` to enter your token.

    ##### Multi-team use instructions
    In order to use the workflow with multiple organizations you will need to enter all of your keys as comma seperated strings with **no** spaces.  
    Example: `team-org-api-token-1,team-org-api-token-2`

    ## Currently Available Functionality
    * `slk`: Let's you switch easily between channels, groups and IMs. Thanks to buzali for getting this working with Slack's URL scheme.
    * `slt`: Set your API Token
      * Open alfred and type `slt`, then paste your token. If you don't have a token, then hold `cmd` to open the API page to get one (look for your team near the bottom of the page).
    * `slm`: Send messages to a channel
      * Open alfred and type `slm` to populate channels. Use your arrow keys to select a channel and hit TAB. Then you can enter your message and hit ENTER. * `slf`: Search files
      * Open alfred and type `slf` to search files. Selecting a file opens it in your browser
    * `slp`: Set your presence
      * Open alfred and type `slp active` or `slp away`
    * `slc`: View, leave and join channels or private groups
      * Open alfred and type `slc` to display a searchable list of channels. Selecting a channel with `alt` leaves and `ctrl` lets you join. Currently only `alt` is functional with groups.
    * `slclr`: Clear unread messages
      * This currently only marks Channels as read and not groups. Depending on the size of your organizations this can also take a few seconds to run.
    * `slim`: Enter a users name to search for most recent DM messages
    * `slr`: Search your starred items
      * Highlight a result and hitting enter opens the web client to that result
    * `sls`: Perform a query across all your channels in your organizations
      * Highlight a result and hitting enter opens the web client to that result
      * Depending on the size of your organization this can take a few seconds to run
    * `slz`: Snooze teams:
      * After finding a team hit TAB and enter the length of snooze in minutes
      * To turn off snooze to the above and enter 0
     
    ## To-do
    * Create a smoother API key/token process
    * Improve speed and performance

    This workflow was created with the help of Dean Jackson's library.
  22. Like
    thanasut reacted to Carlos-Sz in Recent Items 4.3 beta 2 for Alfred 4: Finder Recent Items   
    Overview

    Workflow to display recent Finder files and folders featuring:
    5 default categories 2 custom categories Favorites, including a file action Keywords and hotkeys for Favorites and all categories apart Interaction with Open/Save dialogs and Finder Go To Folder Preview, reveal, open or use Alfred file actions Usage

    Show Alfred and type the keyword rec:



    You can also use the category keyword if you prefer to access the recent files directly, without an initial menu:
    Now: keyword now Folders: keyword fol Applications: keyword apps Documents: keyword docs Downloads: keyword dow Custom Category 1: keyword c1 Custom Category 2: keyword c2 Favorites: keyword fav In addition, there is a hotkey for the keyword rec, Favorites and all categories apart.

    Note that all keywords, as well as the hotkeys, can be changed (go to Alfred Preferences > Workflows).

    Finally, once inside a category you have the following actions:
    Return key: open the file or folder Command key: reveal the file or folder in Finder Option key: pass the file/older path to an open/save dialog or Finder window Control key: add/remove an item to/from Favorites Shift key: preview (Quick Look) the file or folder Custom Categories

    You can set up to two custom categories:
    Show Alfred and type the keyword recpref Select a category to configure and press return key Type an unique category name with at least 3 characters Type one or more (separated by comma) file types e.g.: com.adobe.pdf,public.plain-text To find a file type you can use Alfred Metadata Analyzer.

    To remove a custom category press command key while highlighting one of them in recpref.

    Favorites

    All files or folders set as a favorite item will remain in the list no matter how old they are.

    To add an item to Favorites just highlight a file or folder, hold control key and press return key.

    To remove an item go to Favorites, highlight an item, hold control key and press return key.

    You can also add items utilizing Alfred File Action (accepts multiple files).

    Note that Favorites has also its own keyword (fav) and hotkey.

    Interacting with Open/Save Dialog or Finder

    You can pass a recent file or folder path, or an item in Favorites, to an open/save dialog or even the current Finder window to go to that folder:
    when an open/save dialog is displayed type the keyword rec or any other category keyword find an item (a file or folder or an item from Favorites), highlight it, hold option key and press return key wait a bit so the workflow can load and paste the item path Default Folder

    The workflow remembers the last path used per application. To use the feature just type the keyword df when an open/save dialog is displayed.

    If the workflow was never used for the application, or the path does not exist anymore, then the keyword rec will be automatically triggered so you can select a path from a file or folder.

    There is also a hotkey to make things even faster.

    Make sure to give the feature time to process because e.g. if you hold keyboard keys way too long then the feature may not work as expected.

    What’s new
    Up to 2 custom categories (keyword recpref) Downloads category Keyword for each category Hotkey for each category Multiple files in Add to Favorites file action Changed Auto-path to Default Folder (keyworod df) Changed Just Now category to Now Added Help (keyword rechelp) Update to Alfred 2.3 features Several internal improvements  
    Download
     
    Version 4.3 beta 2 (removed Alfred 3 references) Release date: 12 Jul 2020 Requires Alfred 4 Download  
    Version 4.2 Release date: 19 Jun 2016 Requires Alfred 3 Download  
×
×
  • Create New...