<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>NRCommandScriptSource</key>
	<string>tell application "Evernote"

  tell application "NewsRack"
      set article_url to url of selected tab
      if article_url is "" then
        display alert "No article selected." buttons {"OK"}
        return
      end if
      set article_title to title of selected tab
  end tell

  create note from url article_url title article_title
  activate

end tell</string>
	<key>NRCommandTitle</key>
	<string>Send to Evernote</string>
	<key>NRCommandType</key>
	<string>AppleScript</string>
</dict>
</plist>
