View Single Post
The alternative is to use an AppleScript in something like Alfred to send the current Chrome tab to OmniFocus:

on alfred_script(q)
tell application "Google Chrome"
set theTitle to title of active tab of front window
set theURL to URL of active tab of front window

tell application "OmniFocus"
set theTask to theTitle
set theNote to theURL

tell quick entry
set NewTask to make new inbox task with properties {name:theTask, note:theNote}
select {NewTask}
open
end tell
end tell
end tell
end alfred_script