header-generator 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
<h1 align="center">
|
|
2
2
|
<a href="https://apify.github.io/fingerprint-suite/">
|
|
3
3
|
<picture>
|
|
4
|
-
<source media="(prefers-color-scheme:
|
|
5
|
-
<img alt="Fingerprinting suite" src="https://raw.githubusercontent.com/apify/fingerprint-suite/master/website/static/img/
|
|
4
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/apify/fingerprint-suite/master/website/static/img/logo_big_dark.svg">
|
|
5
|
+
<img alt="Fingerprinting suite" src="https://raw.githubusercontent.com/apify/fingerprint-suite/master/website/static/img/logo_big_light.svg" width="500">
|
|
6
6
|
</picture>
|
|
7
7
|
</a>
|
|
8
8
|
<br>
|
|
9
9
|
</h1>
|
|
10
10
|
|
|
11
11
|
<p align=center>
|
|
12
|
-
<a href="https://www.npmjs.com/package/fingerprint-injector" rel="nofollow"><img src="https://img.shields.io/npm/v/fingerprint-injector/
|
|
12
|
+
<a href="https://www.npmjs.com/package/fingerprint-injector" rel="nofollow"><img src="https://img.shields.io/npm/v/fingerprint-injector/latest.svg" alt="NPM dev version" data-canonical-src="https://img.shields.io/npm/v/fingerprint-injector/next.svg" style="max-width: 100%;"></a>
|
|
13
13
|
<a href="https://www.npmjs.com/package/fingerprint-injector" rel="nofollow"><img src="https://img.shields.io/npm/dw/fingerprint-injector" alt="Downloads" data-canonical-src="https://img.shields.io/npm/dw/fingerprint-injector" style="max-width: 100%;"></a>
|
|
14
14
|
<a href="https://discord.gg/jyEM2PRvMU" rel="nofollow"><img src="https://img.shields.io/discord/801163717915574323?label=discord" alt="Chat on discord" data-canonical-src="https://img.shields.io/discord/801163717915574323?label=discord" style="max-width: 100%;"></a>
|
|
15
15
|
<a href="https://github.com/apify/fingerprint-suite/actions/workflows/test-and-release.yml"><img src="https://github.com/apify/fingerprint-suite/actions/workflows/test-and-release.yml/badge.svg?branch=stable" alt="Build Status" style="max-width: 100%;"></a>
|
|
@@ -30,7 +30,7 @@ With the help of `fingerprint-suite` you can generate and inject browser fingerp
|
|
|
30
30
|
- [`header-generator`](https://www.npmjs.com/package/header-generator): generates configurable, realistic HTTP headers
|
|
31
31
|
- [`fingerprint-generator`](https://www.npmjs.com/package/fingerprint-generator): generates realistic browser fingerprints, affecting the HTTP headers and browser JS APIs
|
|
32
32
|
- [`fingerprint-injector`](https://www.npmjs.com/package/fingerprint-injector): injects browser fingerprints into your Playwright or Puppeteer managed browser instance
|
|
33
|
-
- [`generative-bayesian-network`](https://www.npmjs.com/package/generative-bayesian-network): our fast implementation of Bayesian generative network used to generate realistic browser fingerprints
|
|
33
|
+
- [`generative-bayesian-network`](https://www.npmjs.com/package/generative-bayesian-network): our fast implementation of a Bayesian generative network used to generate realistic browser fingerprints
|
|
34
34
|
|
|
35
35
|
## Quick start
|
|
36
36
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "header-generator",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "NodeJS package for generating realistic browser-like HTTP headers.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Apify",
|
|
7
7
|
"email": "support@apify.com",
|
|
8
8
|
"url": "https://apify.com"
|
|
9
9
|
},
|
|
10
|
-
"homepage": "https://github.com/apify/
|
|
10
|
+
"homepage": "https://github.com/apify/fingeprint-suite",
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"engines": {
|
|
13
13
|
"node": ">=16.0.0"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"type": "git",
|
|
42
42
|
"url": "git+https://github.com/apify/header-generator.git"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "361ed1809be4c34b7c9a0e584f7a50926d697bde"
|
|
45
45
|
}
|