Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have tried to suggest http://www.w3schools.com to chrome://newtab, neither i have success nor errors through discovery.

After a cursory look at source code i have tried the same code in different profiles, but no worth.

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

is not adding my link to chrome://newtab.

Trivial Demonstration

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"
}); 

Is there any thing i missed out, any suggestions?

share|improve this question
1  
The feature requires the --enable-suggestions-ntp flag (visit chrome://flags and search for ntp and discovery). Still, after enabling this flag, I can't get the API to work. It could be broken. – Rob W Dec 4 '12 at 15:00
@RobW Exactly i enabled the flags, but can't get it to work – Sudarshan Dec 4 '12 at 15:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.