Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ytakahashi/chrome-history-reader
A library to read browsing histories of Google Chrome.
https://github.com/ytakahashi/chrome-history-reader
google-chrome
Last synced: 3 months ago
JSON representation
A library to read browsing histories of Google Chrome.
- Host: GitHub
- URL: https://github.com/ytakahashi/chrome-history-reader
- Owner: ytakahashi
- License: mit
- Created: 2020-10-17T23:20:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-24T11:37:53.000Z (5 months ago)
- Last Synced: 2024-09-27T14:04:11.360Z (4 months ago)
- Topics: google-chrome
- Language: TypeScript
- Homepage:
- Size: 304 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chrome-history-reader
[![npm version](https://badge.fury.io/js/chrome-history-reader.svg)](https://badge.fury.io/js/chrome-history-reader)
[![Actions Status](https://github.com/ytakahashi/chrome-history-reader/workflows/Node.js%20CI/badge.svg)](https://github.com/ytakahashi/chrome-history-reader/actions)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)A library to read the browsing history of Google Chrome.
## Install
```shell
npm install chrome-bookmark-reader
```or
```shell
yarn add chrome-bookmark-reader
```## Usage
```typescript
import { ChromeHistoryReader } from 'chrome-history-reader'const chromeHistoryReader = new ChromeHistoryReader({
historyFilePath: '/path/to/Chrome/History',
})console.log(chromeHistoryReader.execute())
// shows your histories
```See following about location of Google Chrome history.
- https://www.foxtonforensics.com/browser-history-examiner/chrome-history-location
## Related Repositories
- [chrome-bookmark-reader](https://github.com/ytakahashi/chrome-bookmark-reader)