I'm using the iCab browser for some research and often want to capture the page title and URL for my notes. Claude AI very helpfully gave me an AppleScript I trigger with Keyboard Maestro.

The guts of it:

tell application "iCab"
	tell front window
			set pageURL to url of current tab
			set pageTitle to name of current tab
			set clipboardText to pageTitle & return & pageURL
			set the clipboard to clipboardText
	end tell
end tell 
The Applescript in a screenshot.