Reputation: 51
I have problem! I try to create a script that will add UI elements to Gmail. I have 2 scenarios:
1.) add ui button with image to bottom of new message dialog: new message
2.) add ui button with image to bottom of contact popover:
g+ contact
And my questions:
Thanks!
Upvotes: 0
Views: 1065
Reputation: 19835
Its not correct that "nobody except the developers of those services have permission to access the interface" since you can write gmail contextual gadgets, however those only show in the body of a received email and not on the new message window.
Can't be done with apps script either which does allow you to create web interfaces (not just for processing data) but you cant add them to the gmail window.
Best option is to write a browser extension and cover the case of gmail/inbox browser pages.
Upvotes: 2
Reputation: 5795
The answer is no.
Google Apps Script is really only a tool for processing data. You cannot add custom UI/buttons to GMail, because nobody except the developers of those services have permission to access the interface.
Here is another question that is similar to yours - it contains a good answer as well.
If you want to add your own buttons, you would need to write a browser extension.
Upvotes: 0