Create a new SessionID with Chrome Extension - google-chrome-extension

I have read this page about chrome.sessions and searched the web, but I cant find how I can change the sessionID or create a new one within a Chrome Extension.
Regards, Peter

You can't do this. A session is started at the browser launch.

Related

Is there a way to get extension id in a chrome extension?

I want to get extension id of my chrome extension in extension codes. I know that extension id is a fixed string after being published to web store. But before it is published, the id changes when loaded from local folder. If I can get the id in codes, it will make debugging and testing much easier.
chrome.runtime.id works! Thanks to #Robbi,
More info about propertyId can be found over Chrome Docs

chrome topsites with new tab override extension

I want to show user's top sites in my new tab extension. I have a few questions about chrome.topsites api:
I only get 10 sites every time. Can I get more?
I don't get new sites. I get always the same sites even if I go to new sites multiple times. Why is that?
In Firefox I used browser.topsites.get({newtab: true}) and I do get new sites.
Is there something similar to this in chrome? I read the dcoumentation and didn't find answers.
Thank you!

How can i open multiple web browser window without cookies?

how can I open a new browser window without cookies ?
I mean, the window shouldn't remember the last session. If I log in to my google account and open new tabs or a new browser window, the browser will show me the same account again.
So, how can I solve this problem ? Thanks for the help

Can't register new Client ID on Instagram developers page

I can't register new client because always have a wrong captcha, I tried to create it with different browsers but same effect :(
The captcha solution was not correct. Please try again.
I used the Content-Security-Policy extension for chrome.
https://github.com/PhilGrayson/chrome-csp-disable
Then the field appeared -> New App Created.
The form is broken.
I've been trying it on and off for the last two weeks, also with different browsers, it doesn't work.
I have exactly the same problem when trying to create an client ID. I've send in a ticket for a solution.
you can see my answer there you have to install google chrome extension and then don't forgot to disable the Content-security policy
https://chrome.google.com/webstore/detail/disable-content-security/ieelmcmcagommplceebfedjlakkhpden
you see here too
https://stackoverflow.com/a/53188447/5889990

How to save user information in a chrome extension

Im making a chrome extension. I need the user to be assigned a unique id they get from my web site. how do i save this information in my chrome extension so that each time the browser is started the extension has the same unique id?
Use local storage, it's persistent across sessions.

Resources