Elbert Alias 3 years ago
parent 8992d8426a
commit 544f7841b1

@ -13,7 +13,7 @@
"software" "software"
], ],
"homepage": "https://www.wappalyzer.com/", "homepage": "https://www.wappalyzer.com/",
"version": "6.10.49", "version": "6.10.50",
"author": "Wappalyzer", "author": "Wappalyzer",
"license": "MIT", "license": "MIT",
"repository": { "repository": {

@ -937,8 +937,12 @@ const Driver = {
agent === 'chrome' || (await getOption('termsAccepted', false)) agent === 'chrome' || (await getOption('termsAccepted', false))
if (tracking && termsAccepted) { if (tracking && termsAccepted) {
const urls = Object.keys(Driver.cache.hostnames) const urls = Object.keys(Driver.cache.hostnames).reduce(
.reduce((urls, hostname) => { (urls, hostname) => {
if (Object.keys(urls).length >= 25) {
return urls
}
// eslint-disable-next-line standard/computed-property-even-spacing // eslint-disable-next-line standard/computed-property-even-spacing
const { language, detections, hits, https } = const { language, detections, hits, https } =
Driver.cache.hostnames[hostname] Driver.cache.hostnames[hostname]
@ -968,8 +972,9 @@ const Driver = {
} }
return urls return urls
}, {}) },
.slice(0, 25) {}
)
const count = Object.keys(urls).length const count = Object.keys(urls).length

@ -4,7 +4,7 @@
"author": "Wappalyzer", "author": "Wappalyzer",
"homepage_url": "https://www.wappalyzer.com/", "homepage_url": "https://www.wappalyzer.com/",
"description": "Identify web technologies", "description": "Identify web technologies",
"version": "6.10.49", "version": "6.10.50",
"default_locale": "en", "default_locale": "en",
"manifest_version": 2, "manifest_version": 2,
"icons": { "icons": {

@ -4,7 +4,7 @@
"author": "Wappalyzer", "author": "Wappalyzer",
"homepage_url": "https://www.wappalyzer.com/", "homepage_url": "https://www.wappalyzer.com/",
"description": "Identify web technologies", "description": "Identify web technologies",
"version": "6.10.49", "version": "6.10.50",
"default_locale": "en", "default_locale": "en",
"manifest_version": 3, "manifest_version": 3,
"icons": { "icons": {

@ -13,7 +13,7 @@
"software" "software"
], ],
"homepage": "https://www.wappalyzer.com/", "homepage": "https://www.wappalyzer.com/",
"version": "6.10.49", "version": "6.10.50",
"author": "Wappalyzer", "author": "Wappalyzer",
"license": "MIT", "license": "MIT",
"repository": { "repository": {