未捕获的TypeError:chrome.storage.sync.get(...)不是函数

时间:2018-02-10 01:38:30

标签: google-chrome-extension local-storage content-script

我正在尝试制作一个运行此javascript库的扩展程序,因为它并不是很清楚如何运行它:

https://github.com/Rio6/Istrolid-js-ai

为此,我需要从弹出窗口中保存的存储区运行代码,但是我在内容脚本中遇到了这个错误:

something

它说这是在这行代码上,

Uncaught TypeError: chrome.storage.sync.get(...) is not a function

这似乎与此问题无关。我的内容脚本是:

(document.head||document.documentElement).appendChild(script);

1 个答案:

答案 0 :(得分:0)

您在此行缺少分号:

"SELECT * FROM City"

因此它被解释为

chrome.storage.sync.get("code", (data) => {code.innerHTML = data[0].code; console.log(data[0].code)})