Hey Gregory,
Not per se – no – but that doesn't mean you can't build something.
Yes – but what Google account? Gmail or something else?
------------------------------------------------------------------------------
# Auth: Christopher Stone
# dCre: 2017/03/08 18:36
# dMod: 2017/03/08 18:36
# Appl: Google Chrome
# Task: Get text content from the front page.
# Libs: None
# Osax: None
# Tags: @Applescript, @Script, @Google_Chrome, @Get, @Text, @Content, @Front, @Page, @JavaScript
------------------------------------------------------------------------------
set jsCmdStr to "document.body.parentNode.textContent"
tell application "Google Chrome"
tell front window
tell active tab
set textContent to execute javascript jsCmdStr
end tell
end tell
end tell
------------------------------------------------------------------------------
Look at these:
How to Switch to or Open Gmail in Google Chrome
The syntax for Chrome will be different, so this may be of limited value – but it should provide some insight into how that all works.
Open or Refresh a URL in a Tab in Safari
-Chris