我想使用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>
....
答案 0 :(得分:1)
正如 chrome.storage
上的文档所述:
(通过
chrome.storage
...)您的扩展程序的内容脚本可以直接访问用户数据,而无需后台页面
因此,内容脚本确实可以访问storage
API,这实际上是针对localStorage
的优势之一。