popup.html无法正确显示

时间:2015-10-09 19:39:12

标签: google-chrome-extension

我刚刚开始学习如何制作Chrome扩展程序并遇到了问题。当我点击我的扩展程序时,popup.html无法正确显示。有时根本不显示,有时则显示如下:

screenshot

这是我的manifest.json:

{
  "name": "Blocker",
  "description": "Blocks things",
  "version": "0.1",
  "manifest_version": 2,
  "browser_action": {
   "default_icon": "icon.png",
   "default_popup": "window.html"
  },
  "permissions": ["activeTab"]
}

我的window.html:

<!DOCTYPE html>
<html>
  <head>
  </head>
  <body height="300px" width="300px">
    <div>Hello, world!</div>
    <img src="icon.png">
  </body>
</html>

0 个答案:

没有答案