从Chrome扩展程序打开html链接

时间:2017-03-03 11:02:56

标签: google-chrome-extension

我为Chrome写了一个扩展程序。我的扩展非常简单。

<html>
<body>
<a href='http://example.com'>Click here</a>
</body>
</html>

我这是我的manifest.json

{
    "name": "Something else",
    "short_name": "Something else",
    "manifest_version": 2,
    "version":"1.0.0.0",
    "description": "Something else",
    "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.html",
    "default_title": "Click here"
},
"icons": {"48": "48.png",
    "16": "16.png",
    "128": "128.png"}
}

我正在构建Chrome扩展程序。一切都好。但是,当我运行扩展程序时,单击上面的链接不会加载页面example.com。我该如何解决这个问题?

0 个答案:

没有答案