Add items to tab's context menu in Google Chrome

In Google Chrome web browser I would like to add options such as "Bookmark Selected Tab", "Close tab to the left" to the tab's context menu.

Is it possible? If possible, what is the API I must check?

Upvotes: 0

Views: 271

Answers (1)

Xan
Xan

Reputation: 77523

No, it's not possible.

The closest API that exists is contextMenus API.

However, if you look at the available "contexts" (objects whose menu you can change), there is no "tab" there.

So, at least currently, you can't modify a tab's context menu.

Upvotes: 2

Related Questions