Skip to content

Optional title for chrome.history.addUrl documenation #5753

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/References/Chrome Extension APIs.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@ In addition, we supported some chrome.* API in the [extension platform](https://

* [chrome.contentSettings](https://developer.chrome.com/extensions/contentSettings) : used to control notfication settings.
* [chrome.tabs](https://developer.chrome.com/extensions/tabs) : used to support fully DevTools extensions
* [chrome.proxy](https://developer.chrome.com/extensions/proxy) : manage proxy settings
* [chrome.proxy](https://developer.chrome.com/extensions/proxy) : manage proxy settings
* [chrome.history](https://developer.chrome.com/extensions/history) : manage history see below

##### chrome.history
Unlike Chrome tab history is not added automatically. You can add them manually e.g. on webview loadstart or loadstop event. `chrome.history.addUrl` details object has optional title attribute (so you can have title in history). Main reason to use `chrome.history.addUrl` is that pages added there are considered visited. E.g. links in webview will change color (`visited` css style will be applied).