Absent since although it’s possible to get the window’s title, it’s not possible to get its URL (it used to be, before version 3.6
). It’s possible via hacky ways that consist of sending keystrokes, but those can be unreliable. This bug is being tracked in Bugzilla.
-
-
Save wilsonsilva/9de5cd06e71ba1c4aec4bddc5f96b0f5 to your computer and use it in GitHub Desktop.
AppleScript and JavaScript for Automation to get frontmost tab’s url and title of various browsers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- AppleScript -- | |
-- This example is meant as a simple starting point to show how to get the information in the simplest available way. | |
-- Keep in mind that when asking for a `return` after another, only the first one will be output. | |
-- This method is as good as its JXA counterpart. | |
-- Chromium variants include "Google Chrome", "Chromium", "Opera", "Vivaldi", "Brave Browser", "Microsoft Edge". | |
-- Specific editions are valid, including "Google Chrome Canary", "Microsoft Edge Dev". | |
-- "Google Chrome" Example: | |
tell application "Google Chrome" to return title of active tab of front window | |
tell application "Google Chrome" to return URL of active tab of front window | |
-- "Chromium" Example: | |
tell application "Chromium" to return title of active tab of front window | |
tell application "Chromium" to return URL of active tab of front window | |
-- Webkit variants include "Safari", "Webkit". | |
-- Specific editions are valid, including "Safari Technology Preview". | |
-- "Safari" Example: | |
tell application "Safari" to return name of front document | |
tell application "Safari" to return URL of front document | |
-- "Webkit" Example: | |
tell application "Webkit" to return name of front document | |
tell application "Webkit" to return URL of front document | |
-- This example returns both the title and URL for the frontmost tab of the active browser, separated by a newline. | |
-- For shorter code inclusive of all editions, only the start of the application name is checked. | |
-- Keep in mind that to be able to use a variable in `tell application` — via `using terms from` — we’re basically requiring that referenced browser to be available on the system. | |
-- That means that to use this on "Google Chrome Canary" or "Chromium", "Google Chrome" needs to be installed. Same for other browsers. | |
-- This method also does not exit with a non-zero exit status when the frontmost application is not a supported browser. | |
-- For the aforementioned reasons, this method is inferior to its JXA counterpart. | |
tell application "System Events" to set frontApp to name of first process whose frontmost is true | |
if (frontapp starts with "Google Chrome") or (frontApp starts with "Chromium") or (frontApp starts with "Opera") or (frontApp starts with "Vivaldi") or (frontApp starts with "Brave Browser") or (frontApp starts with "Microsoft Edge") then | |
using terms from application "Google Chrome" | |
tell application frontApp to set currentTabTitle to title of active tab of front window | |
tell application frontApp to set currentTabUrl to URL of active tab of front window | |
end using terms from | |
else if (frontApp starts with "Safari") or (frontApp starts with "Webkit") then | |
using terms from application "Safari" | |
tell application frontApp to set currentTabTitle to name of front document | |
tell application frontApp to set currentTabUrl to URL of front document | |
end using terms from | |
else | |
return "You need a supported browser as your frontmost app" | |
end if | |
return currentTabUrl & "\n" & currentTabTitle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// JavaScript for Automation (JXA) // | |
// This example is meant as a simple starting point to show how to get the information in the simplest available way. | |
// Keep in mind that when asking for a value after another, only the last one one will be output. | |
// This method is as good as its AppleScript counterpart. | |
// Chromium variants include "Google Chrome", "Chromium", "Opera", "Vivaldi", "Brave Browser", "Microsoft Edge". | |
// Specific editions are valid, including "Google Chrome Canary", "Microsoft Edge Dev". | |
// "Google Chrome" Example: | |
Application("Google Chrome").windows[0].activeTab.name() | |
Application("Google Chrome").windows[0].activeTab.url() | |
// "Chromium" Example: | |
Application("Chromium").windows[0].activeTab.name() | |
Application("Chromium").windows[0].activeTab.url() | |
// Webkit variants include "Safari", "Webkit". | |
// Specific editions are valid, including "Safari Technology Preview". | |
// "Safari" Example: | |
Application("Safari").windows[0].currentTab.name() | |
Application("Safari").windows[0].currentTab.url() | |
// "Webkit" Example: | |
Application("Webkit").windows[0].currentTab.name() | |
Application("Webkit").windows[0].currentTab.url() | |
// This example returns both the title and URL for the frontmost tab of the active browser, separated by a newline. | |
// For shorter code inclusive of all editions, only the start of the application name is checked. | |
// This method is superior to its AppleScript counterpart. It does not need a "main" browser available on the system to reuse the command on similar ones and throws a proper error code on failure. | |
const frontmost_app_name = Application("System Events").applicationProcesses.where({ frontmost: true }).name()[0] | |
const frontmost_app = Application(frontmost_app_name) | |
const chromium_variants = ["Google Chrome", "Chromium", "Opera", "Vivaldi", "Brave Browser", "Microsoft Edge"] | |
const webkit_variants = ["Safari", "Webkit"] | |
if (chromium_variants.some(app_name => frontmost_app_name.startsWith(app_name))) { | |
var current_tab_title = frontmost_app.windows[0].activeTab.name() | |
var current_tab_url = frontmost_app.windows[0].activeTab.url() | |
} else if (webkit_variants.some(app_name => frontmost_app_name.startsWith(app_name))) { | |
var current_tab_title = frontmost_app.windows[0].currentTab.name() | |
var current_tab_url = frontmost_app.windows[0].currentTab.url() | |
} else { | |
throw new Error("You need a supported browser as your frontmost app") | |
} | |
current_tab_url + "\n" + current_tab_title |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment