Add to Safari Reading List from Firefox
Useful if you typically use Firefox but wish to save articles to read in Safari’s Reading List (on an iPad).
- Open the macOS Automator app
- File menu, New, and choose Quick Action (the cog)
- Update the following the dropdown menus:
- Workflow receives no input
- in Firefox
- Click and drag the Run AppleScript action into the workflow area
- Replace the script with the following:
-- send cmd+l and cmd+c keystrokes to FF to highlight and copy the URL tell application "System Events" keystroke "l" using {command down} delay 0.2 keystroke "c" using {command down} delay 0.2 key code 53 --escape end tell tell application "Safari" to add reading list item (the clipboard)
- Save as Add to Reading List
- Open Firefox and find an article
- Firefox menu, Services, Add to Reading List
Adapted from: Add Firefox URL to Reading List