Questions tagged [inboxsdk]

34 questions
1
vote
1 answer

How to remove tracking pixel from gmail body when we reply to a email?

In my chrome extension I am using Inbox.sdk. When someone sends a email I am adding a tracking pixel into it. But when someone reply to our mail. And then we reply to it - tracking pixel is present inside of the body - in trimmed section - How can…
1
vote
1 answer

Get All attachments of gmail compose box using inboxsdk

I am creating a chrome addon for Gmail email tracker. For which I am using InboxSDK, I want to get all attachments from current Gmail compose body and I am using the following code. composeView.addButton({ ..... onClick: function (event) { …
Sunil Dora
  • 1,407
  • 1
  • 13
  • 26
1
vote
1 answer

Manipulating attachments with InboxSDK

Is there any way to manipulate/access message attachments using the InboxSDK? I see in the docs that you can access recipients and body content, but there's no mention of attachments in there.
nicholas
  • 14,184
  • 22
  • 82
  • 138
0
votes
2 answers

How to access email body in inbox list using InboxSDK?

I am trying to make a chrome extension for gmail and am currently tinkering around with InboxSDK but I am unable to figure out how do I access email body from the inbox list itself(without opening the email) to add labels depending on the content. I…
Ayush Kumar
  • 21
  • 1
  • 4
0
votes
0 answers

How to implement Gmail API OAuth flow with InboxSDK for a Chrome extension?

Do I need to add a Gmail API OAuth flow into the extension in order to get access to gmail? If so - where is the best place to implement it in the extension?
Uri Abramson
  • 6,005
  • 6
  • 40
  • 62
0
votes
1 answer

InboxSDK presending event if condition gets stuck

I am using the presending event of InboxSDK to check for a condition before sending the email. For the case selectedProject!==0, email is not getting sent. Does anyone have any comments. composeView.on('presending', (event) => { …
egala
  • 1
0
votes
1 answer

Gmail message "Show details" pop-up box is is hidden upon mouse-over when InboxSDK chrome extension is installed

I am developing a chrome extension for Gmail using InboxSDK. I have an obscure, but frustrating issue. The email message "Show details" pop-up box disappears upon mouse-over whenever the extension is installed. The extension does not directly…
0
votes
1 answer

How to add action to the button created using inboxsdk in gmail inbox?

I have created the button in the gmail inbox using inboxsdk. Now i want to get a pop up by clicking on that button 2.Pop up should contain a link which navigates to my website page(xyz.com/login.php) How can i do these using inboxsdk Screenshot:
Umashankar B
  • 415
  • 8
  • 21
0
votes
0 answers

Manually boostrapped Angular app in InboxSDK change detection not working

I'm trying to manually bootstrap an Angular application from the callback of an external library ie the inbox sdk. Current behaviour At the moment the application bootstraps and renders the initial state of the app but further changes to the app /…
nick
  • 3,521
  • 3
  • 22
  • 32
0
votes
1 answer

How to insert a button to gmail page in firefox extension?

i want to develop an extension for both chrome and firefox and need to insert a button to gmail page. In chrome i use Inboxsdk and it work very fine like this: image Unfortunately, it looks like inboxsdk is not supported on the firefox extension. I…
0
votes
2 answers

inboxSDK override global side content panel

Is there anyway to override the global side content panel inside a conversation, so that we have one icon that will work globally and inside each thread at the same time? Add global side bar content panel globally:…
Mahmoud Abd AL Kareem
  • 615
  • 2
  • 10
  • 23
0
votes
1 answer

Bug or i do a mistake with inboxsdk "presending" event

When i use the inboxSDK with the newGmail I face an issue that the "event" did not get the composeView like the other events. sdk.Compose.registerComposeViewHandler(function (composeView) { composeView.on("presending", function (event) { …
Cédric Boivin
  • 10,854
  • 13
  • 57
  • 98
0
votes
1 answer

Gmail API: Able for sender to add a label to recipient email?

I'm working on a collaboration tool and I need the ability for the sender to add a label as defined by the recipient to an email. I'm using a combination of InboxSDK within a Chrome Extension and a backend Rails application that talks to the Gmail…
brianrhea
  • 3,674
  • 3
  • 34
  • 57
0
votes
2 answers

Get sender email with inboxSDK

How I can get sender e-mail by indboxSDK? I tried this: InboxSDK.load(2, 'sdk_marcin123_e44a6df9c6').then(sdk => { sdk.Conversations.registerThreadViewHandler(threadView => { var tytul=threadView.getSubject(); var…
0
votes
1 answer

Get Add my own content to gmail compose box using inboxsdk

I am developing a chrome addon and I want to append my own content at the end to mail content using InboxSDK. I am using the following code, but it's appending to my cursor position in Gmail Compose Box. var cv =…