How can I add a link to Quiet Read using AppleScript?

Quiet Read Pro provides AppleScript support. To add a link, you can write a script like this:

tell application "Safari"
set theWindow to item 1 of windows
set theTab to item 1 of the tabs of theWindow
set theTitle to do JavaScript "document.title" in theTab
set theUrl to do JavaScript "document.location.href" in theTab
end tell

tell application "Quiet Read"
set theLink to make new link with properties {url:theTitle, title:theUrl}
end tell

That script will add Safari's frontmost tab to Quiet Read.