mirror of
https://github.com/vitalygashkov/crextractor.git
synced 2026-07-15 17:40:03 +02:00
37 lines
468 B
Markdown
37 lines
468 B
Markdown
# Crunchys
|
|
|
|
A utility to extract secrets from Crunchyroll mobile app
|
|
|
|
## Prerequisites
|
|
|
|
- [Node.js](https://nodejs.org/en)
|
|
- [jadx](https://github.com/skylot/jadx)
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
npm i crunchys
|
|
```
|
|
|
|
## Usage
|
|
|
|
#### Library
|
|
|
|
```js
|
|
import { extractSecrets } from 'crunchys';
|
|
|
|
const { id, secret, encoded, header } = await extractSecrets();
|
|
|
|
// Do something with the extracted secrets
|
|
```
|
|
|
|
#### Command-line interface
|
|
|
|
```bash
|
|
npx crunchys
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|