我看到了一个关于如何创建基本 chrome 扩展的 youtube 视频,我成功地将解压缩的扩展加载到浏览器中,但它没有给出任何弹出窗口。这是代码
{
"name":"Facebook",
"version":"1.0",
"description":"My Facebook Profile",
"manifest_version":2,
"browser_action":{
"default_icon":"google-plus-red-128.png",
"popup":"hello.html"
}
}
这是html文件
<h2>hello world</h2>