我制作了一个html页面,我打算为Chrome制作应用。当我打包并测试它时,它没有工作。我看到错误消息说我无法使用{% block header %}
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="/css/style.css">
<title>Dari Dictionary</title>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
{% endblock %}
,但我不得不使用localStorage
。我在localStorage周围构建了整个东西,所以使用chrome.storage
我将不得不重写大部分代码。我想知道是否有一种方法可以使用localStorage而不会给我一个错误消息。我已经尝试过使用iframe了,但它没有用。我也希望我的应用程序在自己的窗口中打开。任何答案都将不胜感激。