!752 p { File bookmarksDir = userDir(".config/google-chrome/Default"); assertTrue("No bookmarks dir", bookmarksDir.isDirectory()); File bookmarksFile = new File(bookmarksDir, "Bookmarks"); S text = loadTextFile(bookmarksFile); assertNotNull("No Bookmarks file: " + bookmarksFile.getAbsolutePath(), text); O json = jsonDecode(text); int n = 0; for (Map map : findAllMaps(json)) { O _url = map.get("url"); if (_url instanceof S) { O name = map.get("name"); O date = map.get("date_added"); print("URL found: " + _url); if (name instanceof S) print(" Name: " + name); if (date instanceof S) pcall { print(" Date: " + formatDate(parseLong(date))); } ++n; } } print("URLs found: " + n); }