Elbert Alias 3 years ago
parent 8992d8426a
commit 544f7841b1

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

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

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

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

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