chrome.topSites
- Description
Use the
chrome.topSites
API to access the top sites (i.e. most visited sites) that are displayed on the new tab page. These do not include shortcuts customized by the user. - Permissions
topSites
Manifest #
You must declare the "topSites" permission in your extension's manifest to use this API.
{
"name": "My extension",
...
"permissions": [
"topSites",
],
...
}
Examples #
You can find samples of this API in Samples.
Summary
- Types
- Methods
chrome.topSites.get(callback: function)
Types
MostVisitedURL
An object encapsulating a most visited URL, such as the default shortcuts on the new tab page.
Properties
- titlestring
The title of the page
- urlstring
The most visited URL.
Methods
get
chrome.topSites.get(callback: function)
Gets a list of top sites.
Parameters
- callbackfunction
The callback parameter should be a function that looks like this:
(data: MostVisitedURL[]) => {...}
- data