chrome.topSites
描述: |
使用 chrome.topSites API 访问“打开新的标签页”页面中显示的“常去网站”。
|
可用版本: |
从 Chrome 19 开始支持。
|
权限: |
"topSites"
|
清单文件
您必须在扩展程序的清单文件中声明 "topSites" 权限才能使用这一 API。
{ "name": "我的扩展程序", ... "permissions": [ "topSites", ], ... }
例子
您可以在示例中找到使用这一 API 的示例。
摘要
类型 | |
---|---|
MostVisitedURL | |
方法 | |
get −
chrome.topSites.get(function callback)
|
类型
MostVisitedURL
属性 | ||
---|---|---|
string | url |
最常访问的 URL。 |
string | title |
此页面的标题。 |
方法
get
chrome.topSites.get(function callback)
获取常去网站列表。
参数 | |||||
---|---|---|---|---|---|
function | callback |
callback 参数应该是一个如下形式的函数: function(array of MostVisitedURL data) {...};
|
示例扩展程序
- Top Sites – Shows the top sites in a browser action
- NTP prototyping extension – extension to prototype new NTP designs