标签: javascript google-chrome-extension
是否可以在chrome.storage.sync.get
var variable = "item1"; var f = (function () {chrome.storage.sync. get ({ items: [ variable ] }, function(storage) { }) }); f();
items存储值将是变量值。
items
谢谢。