This page was saved using WebZIP 7.0.3.1030 offline browser on 12/24/13 11:31:36.
Address: https://crxdoc-zh.appspot.com/extensions/topSites.html
Title: chrome.topSites - Google Chrome 扩展程序开发文档(非官方中文版)  •  Size: 19812

chrome.topSites

描述 使用 chrome.topSites API 访问“打开新的标签页”页面中的显示的“常去网站”。
可用版本 从 Chrome 19 开始稳定支持。
权限 "topSites"

清单文件

您必须在扩展程序的清单文件中声明 "topSites" 权限才能使用这一 API。

{
  "name": "我的扩展程序",
  ...
  "permissions": [
    "topSites",
  ],
  ...
}

例子

您可以在示例中找到使用这一 API 的示例。

chrome.topSites 参考

类型

MostVisitedURL

包含最常访问 URL(例如“打开新的标签页”页面上的 URL)的对象。

MostVisitedURL 的属性

url ( string )

最常访问的 URL。

title ( string )

此页面的标题。

方法

get

chrome.topSites.get(function callback)

获取常去网站列表。

参数

callback ( function )

callback 参数应该指定一个如下形式的函数:

function(array of MostVisitedURL data) {...};

data ( array of MostVisitedURL )