Copyright 2019 Luís Gomes <luismsgomes@gmail.com>, all rights reserved.
pip3 install get-firefox-urlsfrom get_firefox_urls import get_firefox_urls
for w, t, url in get_firefox_urls():
print("window %d tab %d: %s" % (w, t, url))get-firefox-urlsWill output something like:
window 0 tab 0: https://github.com/luismsgomes/get-firefox-urls window 0 tab 1: https://pypi.org/project/get-firefox-urls/
This software is licensed under the MIT license.