简体   繁体   English

Google Chrome扩展程序未显示弹出窗口

[英]Google chrome extension not showing the popup

The problem is that when I click on the icon it doesn't show anything at all. 问题是,当我点击图标时,它根本不显示任何内容。

manifest.json 的manifest.json

{
  "manifest_version": 2,
  "name"            :  "My cool plugin",  // the name of the extension
  "version"         :  "1.0"              ,   // version number
  "description"     :  "My cool plugin", // description used in the Chrome Webstore
  "background": "background.html",
  "browser_action"  :  {
    "default_title": "My cool plugin",
      "default_icon"   :  "icon.png",      // specifies the default icon
      "popup"          :  "popup.html"   // the page to show when the icon is clicked
  },
  "permissions": [
    "tabs", 
    "http://*/",
    "https://*/*"
  ]
}

popup.html and background.html popup.html和background.html

<div>
    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
    tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
    quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
    consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
    cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
    proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>

What is the problem? 问题是什么?

it's "default_popup": "popup.html" not "popup" 这是"default_popup": "popup.html"不是“popup”

https://developer.chrome.com/extensions/browserAction.html https://developer.chrome.com/extensions/browserAction.html

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM