Open in NetNewsWire
Summary: Opens the current page in NetNewsWire.
Requires: Safari, NetNewsWire
Install Location: ~/Library/Scripts/Applications/Safari/
Last Modified: 2019-05-24
Description
Safari 6 no longer has an RSS button/menu. Opening the current page in NetNewsWire lets you subscribe using NetNewsWire’s built-in feeds menu.
Installation Instructions · Download in Compiled Format · Download in Text Format
Script
tell application "Safari"
set _document to document of window 1
set _url to URL of _document
end tell
tell application "NetNewsWire"
activate
open URL in new tab with _url
set index of selected tab to (number of tabs - 1)
end tell