Max
Max

Reputation: 4408

Adding a dropdown list to the browser through google chrome extension?

Is it possible to add a dropdown menu to chrome browser through a google chrome extension so the user can chose an option lets say color and then the extension can apply that color to the background or something else? Note I am interested in adding a dropdown to the chrome browser.

Upvotes: 0

Views: 1644

Answers (1)

serg
serg

Reputation: 111265

You can't change browser's menu. You can:

  • add icon with optional popup to the toolbar (browser action),
  • add icon to the url bar (page action),
  • add item to page's context menu.

That's the only changes you can make to browser's interface. Based on your task I would go with browser action with popup.

Upvotes: 1

Related Questions