Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 621 Bytes

bookmark_exporter-js.md

File metadata and controls

9 lines (8 loc) · 621 Bytes
title date categories
Bookmark_exporter.Js
2023-11-23
useful-script-en

how to add bookmarklet in chrome
export default { icon: ‘‘, name: { en: “Export bookmarks to file”, vi: “Xuất bookmarks ra file”, }, description: { en: “”, vi: “”, }, onClickExtension: function () { chrome.bookmarks.getTree((tree) => { console.log(tree); }); }, };