如何使用chrome.storage.sync保存选项?

时间:2013-12-07 04:58:34

标签: javascript google-chrome google-chrome-extension

我想使用chrome.storage.sync我在选项页面链接脚本文件,但chrome.*not available in content scripts,我将如何才能使用chrome.storage.sync

<!-- options.html -->
<head>
 <script src="options.js"></script><!-- chrome.storage.sync not available -->
</head>
<body>
 ....

1 个答案:

答案 0 :(得分:1)

正如 chrome.storage 上的文档所述:

  

(通过chrome.storage ...)您的扩展程序的内容脚本可以直接访问用户数据,而无需后台页面

因此,内容脚本确实可以访问storage API,这实际上是针对localStorage的优势之一。