Solía hacerlo en Firefox usando un comando de Python, pero recientemente algo cambió y ya no puedo obtener la URL.
Lo que solía funcionar con Firefox:
#!/bin/bash current_tab_num () { python2 <<< $'import json\nf = open("/home/username/.mozilla/firefox/xxxxx.default/sessionstore.js", "r")\njdata = json.loads(f.read())\nf.close()\nprint str(jdata["windows"][0]["selected"])' } current_tab_url () { sed -n "$(current_tab_num)p" <(python2 <<< $'import json\nf = open("/home/username/.mozilla/firefox/xxxxx.default/sessionstore.js", "r")\njdata = json.loads(f.read())\nf.close()\nfor win in jdata.get("windows"):\n\tfor tab in win.get("tabs"):\n\t\ti = tab.get("index") - 1\n\t\tprint tab.get("entries")[i].get("url")') } current_tab_url
¿Alguien puede decirme cómo hacer esto en Firefox y / o Chrome?
NOTA : No entiendo python, ¡acabo de encontrar esos comandos en alguna parte y los usé en bash!