Hello i have this function for get user access token
chrome.identity.getAuthToken({ 'interactive': false }, function(token){
...
});
but i want to use access token as variable for example:
var token = someFunction();
there is some method to get this? or use this token out of callback function?