如何防止扩展程序的弹出页面中的任何内容在新选项卡中打开链接

时间:2018-05-14 18:54:47

标签: javascript html json google-chrome-extension manifest.json

我有以下Chrome扩展程序代码

的manifest.json:

{
  "name": "Popup_DB",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "random",
  "browser_action": {
    "default_title": "Alt+C for opening",
    "default_popup": "hello.html"
  },
    "commands": {
      "_execute_browser_action": {
        "suggested_key": {
          "windows": "Alt+C"
        }
      }
    },
  "permissions": [
    "*://*/*",
    "tabs"
  ]
}

的Hello.html:

<html>
<head>
    <style type="text/css">
    body {width:780; height:580;}
    </style>
</head>
<body>
    <iframe src= "https://www.bing.com/" width="100%" height="100%" frameborder="0" id="MyFrame">
    </iframe>
</body>
</html>

我在iframe中提到的网站是纪念品。基本上,在弹出窗口中,我想打开一个页面,其中所有“Go”链接强制在新选项卡中打开页面,强制弹出窗口关闭。

有没有办法编辑HTML代码,以便在新标签页中不打开任何内容,这样我基本上可以做画中画?

0 个答案:

没有答案