0

Chrome 的一大优点是,如果你在地址栏上输入一个词,它会提示相关的 URL 可能是什么。例如,如果我输入“New York”,它会建议 nytimes.com

可以开发提供定制建议的扩展吗?例如,如果我有一个内部公司网站,比如说 foo 托管具有数字 ID 的文档 - 例如http://domain.com/123http://domain.com/234。当有人在浏览器地址栏上键入“123”时,我希望http://domain.com/123显示为建议(即使以前从未访问过)。

这样的事情可能吗?如果是这样,我会喜欢一些指针(我从未开发过 Chrome 扩展,但如果可能的话,我可以查找并实现它)。

谢谢!拉吉

4

1 回答 1

2

是的,可以通过 Omnibox,https://developer.chrome.com/extensions/omnibox.html 我在这里写了一个示例实现:

Manifest File:

{

 "name": "Omnibox Demo",

  "description" : "This is used for demonstrating Omnibox",

  "version": "1",

  "background": {

    "scripts": ["background.js"]

  },

  "omnibox": {
 "keyword" : "demo" 
},

  "manifest_version": 2

}

JS File:

chrome.omnibox.setDefaultSuggestion({"description":"Search %s in Dev Source Code"});

chrome.omnibox.onInputStarted.addListener(function() {

    console.log("Input Started");


});

chrome.omnibox.onInputCancelled.addListener(function() {

    console.log("Input Cancelled");

});

chrome.omnibox.onInputEntered.addListener(function (text) {
    console.log("Input Entered is " + text);
});

chrome.omnibox.onInputChanged.addListener(

  function(text, suggest) {

    console.log('inputChanged: ' + text);

    suggest([

      {content: text + " one", description: "the first one"},
      {content: text + " number two", description: "the second entry"}
    ]);
  });
于 2012-11-16T13:00:29.623 回答