我正在制作一个记事本,我想要chrome扩展,以保持什么用户类型在文本区域,当他们关闭它…我该怎么做呢?我试了很多次但都失败了
可以使用chrome.storage.local
或chrome.storage.sync
存储扩展数据
请注意,您需要将其添加到permissions
部分中的扩展清单中:
"permissions": [
"storage"
],
它是异步API -你可以像这样使用它的回调:
chrome.storage.sync.set({key: value}, function() {
console.log('Value is set to ' + value);
});
chrome.storage.sync.get(['key'], function(result) {
console.log('Value currently is ' + result.key);
});
我还建议查看官方文档:https://developer.chrome.com/docs/extensions/reference/storage/