11

I have one problem. I build chrome extension and override the newtab page with my custom page. Bookmarks bar display on default Chrome newtab page, but hide on my custom new tab page.

Default Chrome Bookmarks Bar

Maybe, anyone have some idea: how display Bookmarks bar WITH CHROME API? Please, skip tips such as press key combination Ctrl+Shift+B or make your own Bookmarks bar page, only chrome api interest me.

abraham
  • 46,583
  • 10
  • 100
  • 152
Mips0208
  • 113
  • 6

1 Answers1

9

Sorry. It is not possible for now.

Chromium doesn't have that kind of API.

chrome.bookmarks API is for adding, removing, getting bookmarks.

Sungguk Lim
  • 6,109
  • 7
  • 43
  • 63
  • 5
    Although one could probably implement their own version by getting the bookmarks and displaying them. – abraham Nov 17 '15 at 23:03
  • 1
    @abraham that approach though face some limitation as the native bookmarks bar has the ability to unroll sub-menus outside of the chrome window – Memes Dec 18 '18 at 02:53