How to get the url of currently opened tabs in all browsers with php or javascript? -
if can guide bit or have little knowledge how make possible, please let me know.
thanks
you can't, information not available via standard interface (except window already have reference to). can see why. wouldn't want site owner 1 of tabs able know other tabs showing, massive invasion of privacy.
for windows have reference to, can url of whatever window showing (window.location.href
), , possibly of parent window (window.parent.location.href
), top-level (window.top.location.href
), , subordinate frames (window.frames[n].location.href
— think). that's not going tabs asked for.
this information available via extension mechanism of various browsers (firefox add-ins, chrome extensions, etc.), browser extension, requires explicit install user, , (currently) requires writing 1 each browser vendor, not vendors offer extension mechanism.
separately: information not sent server-side (you tagged question php
).
Comments
Post a Comment