JoeChin
JoeChin

Reputation: 401

How to add dialog box on webpage with Chrome Extension?

Does anyone know how to add a dialog box similar to the one used by Google's Voice extension (it's the one in the blue activated by clicking on the phone number)?

enter image description here

Thanks, Joe Chin

Upvotes: 0

Views: 659

Answers (1)

serg
serg

Reputation: 111265

Chrome doesn't come with any GUI API. Everything you see is made in plain javascript and css. You would need to either find some js library that helps with creating dialogs, or style them yourself (that's what that Google Voice extension looks like is doing).

Upvotes: 2

Related Questions