Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 548293
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:03:50+00:00 2026-05-13T11:03:50+00:00

How might an external program communicate with a browser? Hopefully this will be of

  • 0

How might an external program communicate with a browser? Hopefully this will be of some use to others: I’m listing off a number of options I’ve seen or tried while unsuccessfully getting this to work. If you know of others, please post them.

  • If Mac, use AppleScript (info/solution at q.263741, try this search)
  • Use or create an extension for Firefox (iMacros?, q.410411), Chrome (?)
  • Use a WebBrowser Control to host an IE instance (some tips at q.1143187)
  • If you own the site, this can be done with a background ajax script

My question: how can I get the current foreground browser’s (Chrome, specifcally) URL and referrer from an external windows app, without modifying the browser?

I’ve tried using User32’s GetWindowText, which grabs the title (using jNative for Java). This often lets me guess the server. It may be possible to write a local proxy that will map titles to URLs, but this is much work. I’ve written a FireFox extension to rig the window title with this information, but it became outdated, and I need this for Chrome now anyway. I’d prefer not to add junk to the browser, unless broadly useful. Perhaps I could file a feature request for an applescript-like api for chrome on windows. AHK Window Info 1.7 manages to grab the URL (but not referrer) under visible/hidden text, but I have no idea how to port the code it uses.

(Some info for FF/C# at q.990409 & here, some IE info at q.823755 (redirects to q.352236). No info at q.1107978.
Ignore this: Related questions: How can I control firefox with a macro? How can I get browser information? How can I get current browser URL? How can I get chrome’s current URL from an external app?)

Ideas, code samples, pointers to potentially relevant questions, and answers to my specific question are all appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T11:03:50+00:00Added an answer on May 13, 2026 at 11:03 am

    Quick and dirty solution (you can convert it from Delphi to your language):

    var
     h : HWND;
     pCh : array [0..255] of char;
    begin
     Result := '';
     h := GetForegroundWindow;   // or pass main Chrome window here
     if h = 0 then exit;
    
     h := GetWindow(h,GW_CHILD);
     if h = 0 then exit;
    
     h := GetWindow(h,GW_HWNDNEXT);
     if h = 0 then exit;
    
     SendMessage(h, WM_GETTEXT, SizeOf(pCh), integer(@pCh)) ;
     Result := pCh;                // <-- URL is here!
    end;
    

    Thanks for the question 😉 – just added to our WorkTime – time tracking software

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 476k
  • Answers 476k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can discover the whether the window is maximized with… May 16, 2026 at 4:54 am
  • Editorial Team
    Editorial Team added an answer If you Google ServerCommunicatorAdmin you'll see that it's part of… May 16, 2026 at 4:54 am
  • Editorial Team
    Editorial Team added an answer I would beneift from more understanding of the details of… May 16, 2026 at 4:54 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.