Questions tagged [inboxsdk]
34 questions
3
votes
0 answers
Inboxsdk, How i can add label in Conversations ThreadView?
i am trying to add label in ThreadView in Conversation. but nothing happen. SubjectList in my code is dynamic list of subjects.
here is a doc link: https://www.inboxsdk.com/docs/#ThreadView
InboxSDK.load(2,…

Sandeep Rathour
- 31
- 2
3
votes
0 answers
GMAIL API returns different ThreadID than inboxSDK
Context: I am using the [PHP] Gmail API and InboxSDK.
When sending a message (with Gmail API), I output the message sent object (reference here).
It contains info about message ID and Thread ID.
What is happening?
Id and ThreadID is the same (ok:…

Álvaro N. Franz
- 1,188
- 3
- 17
- 39
2
votes
1 answer
InboxSDK "Error creating AppId: Invalid app id seed"
Trying to register an app for InboxSDK here: https://www.inboxsdk.com/register
Every AppID I try and register results in the error:
""Error creating AppId:
Invalid app id seed"
I have tried using random strings, random numbers, the Chrome Extension…

Connor Shield
- 21
- 1
2
votes
1 answer
Latest Beta version of InboxSdk library which supports chrome manifest v3 is not working
I simply copied the code of latest inboxsdk.js file and replace the old one as mentioned in the google group post[Please see screenshot]. But, the SDK is not loaded and there is no error on the console as well. They haven't mentioned any extra steps…

roshan1892
- 81
- 1
- 7
2
votes
0 answers
InboxSDK get all attachments in a thread
Is there any way to get the title of all attachments in an email thread with InboxSDK? I see there is a method getTitle under AttachmentCardView but if the message itself is not loaded, the attachment card view does not show up. I have tried using…

rma
- 1,853
- 1
- 22
- 42
2
votes
1 answer
How do I make a chrome extension with InboxSDK run both on Gmail and on other websites?
I'm developing a Google Chrome Extension with InboxSDK that runs on Gmail. Now that the Gmail part is ready I want to expand to other websites with a subset of functionality that doesn't require InboxSDK nor Gmail features. My idea was to attempt to…

Przemek
- 31
- 7
2
votes
1 answer
How to simulate a drop event in gmail's compose window
I have a use case where I have to programmatically attach attachments to a Gmail compose window using a chrome extension. inboxSDK has APIs to do this but I do not want to include a huge library just for this one function.
I tried doing this by…

revant
- 234
- 3
- 13
1
vote
0 answers
Adding buttons on the GMAIL Toolbar
I currently have a chrome extension which adds a new button on the GMail Toolbar each time I open a message in GMail on a chrome tab. This is done currently using inboxSDK's (1) registerThreadViewHandler() and (2)…

GovZ
- 253
- 1
- 11
1
vote
0 answers
Chrome Extension to forward an email
I have to create a google chrome extension that will plug into gmail and add a button to the toolbar when reading an email as well as in the ellipses next to the reply button. When the button is clicked it should forward the email to a certain email…

CyDev
- 11
- 4
1
vote
0 answers
create a button in gmail toolbar with inboxsdk and add some actions
I'm new in inboxsdk
how i can create a a button in the actions toolbar so that when a user clicks the button he gets the threadId and messageId?

sousoukei
- 11
- 1
1
vote
2 answers
Is there a way to intercept the Gmail Compose window Send button using InboxSDK?
I'm writing a Chrome extension that modifies the Gmail Compose window to add a control that allows the user to choose between sending the message using our proprietary protocol or as regular email. My question is, once the extension determines the…

FractalBob
- 3,225
- 4
- 29
- 40
1
vote
1 answer
Where and how can i get account id to be used with chrome.identity.getAuthToken
I am building a chrome extension for gmail using InboxSDK and i need to authenticate users with google to use gmail API.
There is built in functionality to authenticate user with google using chrome.identity.getAuthToken, but it uses chrome user to…

Ivan Vukman
- 11
- 1
1
vote
1 answer
Send mail using custom button created using inboxsdk?
I am creating chrome extension for gmail,
I want send a mail when user click a button created by my extension. I am using inboxsdk for creating extension.
I am creating button using following code
InboxSDK.load('1',…

Anudeep GI
- 931
- 3
- 14
- 45
1
vote
1 answer
How to Block Image Loading in GMAILS Chrome Extension?
In my simple gmail chrome extension - I want to prevent loading of image in a sent mail.
Inside chrome.webRequest.onBeforeRequest.addListener is working when I include
urls: [ "*://*.googleusercontent.com/*" ]
in the urls array. But this will…

Sandeep Chikhale
- 1,505
- 2
- 21
- 36
1
vote
1 answer
InboxSDK - make sidebarContentPanel collapsed after it's added to threadView
I'm using InboxSDK to add sidebar to thread view on GMail.
I do it like this:
InboxSDK.load(2, 'MY_KEY').then(sdk => {
sdk.Conversations.registerThreadViewHandler(threadView => {
const el = document.createElement("div");
el.id =…

kecman
- 813
- 3
- 14
- 34