rdflynn Posted August 21, 2015 Share Posted August 21, 2015 Hi All! Just wanted to share a little workflow I've put together with help from James (http://www.alfredforum.com/user/8876-jamespaden/). It's to allow you to search Dashlane using Alfred. To use, simply invoke Alfred and type df (Dashlane Find). Press space, then enter a search term (e.g. Gmail). Press return. Dashlane will open with your search term in the search field. You can then choose the item you want and get the detail you need (e.g. Copy password). Get the workflow from here: https://www.dropbox.com/s/y436cc1eb73g2bj/Find%20in%20Dashlane.alfredworkflow?dl=0 Hope this is useful - let me know if you have any problems and I'll see what I can do. You may also be interested to see the original thread for this as we were discussing the idea and how it could work: http://www.alfredforum.com/topic/5368-dashlane-integration/?hl=dashlane Once more, thanks to James for helping with some of the implantation! Thanks Ryan Link to comment
rdflynn Posted October 28, 2015 Author Share Posted October 28, 2015 Hi All, Just to say I have made a very small update to the script. I have added ".app" to the end of the Dashlane line in the Applescript as otherwise the script tries to open Dashlane installed inside Parallels VMs. The download link is the same (above) as I didn't consider it such a massive change to create a whole new file! Hope it is useful for you all, let me know if you need any updates or new features I've not thought of yet. Thanks Ryan Link to comment
gr3gg Posted November 16, 2015 Share Posted November 16, 2015 Wow! Exact.y what I needed. Wonderfull! Txs A LOT @rdflynn! Link to comment
rockkoca Posted January 13, 2018 Share Posted January 13, 2018 This version does not wait Dashlane to be in foreground before it starts search. I made a little improvement for this workflow. So, it does not start search until the Dashlane is in foreground. https://github.com/rockkoca/find_in_dashlane_alfred_workflow Link to comment
sanderschat Posted September 30, 2019 Share Posted September 30, 2019 On 1/13/2018 at 9:02 AM, rockkoca said: This version does not wait Dashlane to be in foreground before it starts search. I made a little improvement for this workflow. So, it does not start search until the Dashlane is in foreground. https://github.com/rockkoca/find_in_dashlane_alfred_workflow Yes, nice script! i added a little extra to "auto-copy" the value, if it has found a unique value. Since i am not an AppleScript expert it might not work in some cases, but for now, i get good results here. on alfred_script(q) set appname to "Dashlane" tell application appname to activate tell application "System Events" repeat until (exists window 1 of process appname) delay 0.1 end repeat keystroke "f" using command down keystroke q delay 0.5 keystroke "c" using command down end tell end alfred_script Hope this will help you guys a bit too. pat-s 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now