, .
var macId = null;
chrome.storage.local.get('machine-id', function(item){
var storedMacId = item['machine-id'];
if(!storedMacId) {
storedMacId = Math.random().toString(36).slice(2);
chrome.storage.local.set({'machine-id':storedMacId});
}
macId = storedMacId;
});
, macId . . , ( Chrome, google ).
, .
!