http://pfpmd7dd5ijt4add2sfi4djsaij4u3ebvnwvyvuj6aeipe2f5llptkid.onion/ui3/ff
/usr/bin/env python3
import json
import pydash
PLACE_T = "text/x-moz-place"
CONTAINER_T = "text/x-moz-place-container"
SEPARATOR_T = "text/x-moz-place-separator"
def merge(left_node, right_node, id_offset):
left_children = left_node.get('children')
right_children = right_node.get('children')
if right_children is None:
return
if left_children is None:
left_node['children'] = right_children
return
for child in right_children:
if...