How to make dynamic split browser (co-depending)?
I want to make a split window - additional to main one, where I would see a different URL, built on basis of main window. For example main URL is http://xxx.com, the additional one would be http://xxx.com/inbox/search?q=[TEXT] where text would be taken from main page code - for example from metatags or from title.
any help appreciated:) Regards
All Replies (1)
You might be able to do this with the Greasemonkey or Scriptish extension and a userscript.
When a page or userscript launches a new window using the window.open() method, it can specify a name for that window (e.g, "my_search"). If you keep that named window open next to your main window, every time you load a new page in the first window your script can load the new URL in the second window by re-using that window name. I need to add "in theory" because I haven't tested this idea.
To get assistance with writing a userscript, you can try this forum: Ideas and script requests - Userscripts.org.
An gyara