Using Automator, I want to do Google searches of selected texts, but the selected text should be within quotes!
I do not know how to make the script put quotes on the selected text (input), like "selected text".
on run {input, parameters}
open location "https://www.google.com/search?q=" & input
end run
EDIT
This is the solution:
on run {input, parameters}
open location "https://www.google.com/search?q=" & quote & input & quote
end run