chrome.experimental.discovery.suggest不建议使用chrome:// newtab

时间:2012-12-04 13:55:23

标签: google-chrome google-chrome-extension

我尝试向http://www.w3schools.com建议chrome://newtabdiscovery我既没有成功也没有错误。

在粗略看一下source code后,我在不同的个人资料中尝试过相同的代码,但没有价值。

  registry->Add(extension_id(), suggested_link.Pass());

未将我的链接添加到chrome://newtab

琐碎的示范

的manifest.json

{
"name":"Discovery Demo",
"description":"This demonstrates Discovery API",
"manifest_version":2,
"version":"1",
"permissions":["experimental"],
"browser_action":{
    "default_icon":"screen.png",
    "default_popup":"popup.html"
}
}

popup.html

    <html>
    <head>
    <script src="popup.js"></script>
    </head>
    <body>
    </body>
    </html>

popup.js

chrome.experimental.discovery.suggest({
    "urlImage": chrome.extension.getURL("screen.png"),
    "score": 1.0,
    "linkUrl": "http://www.w3schools.com",
    "linkText": "Sample"
}); 

有什么我错过了,有什么建议吗?

0 个答案:

没有答案