AppleScript - Get the path to an application without opening it

Solution 1:

Use Finder to get an application file object:

tell application "Finder"
    POSIX path of (application file id "org.chromium.Chromium" as alias)
end tell

You can also get the bundle identifier with id of app "Chromium".