Build v5.4.12

main
Elbert Alias 7 years ago
parent 4d307ef90b
commit bf47697939

@ -138,15 +138,15 @@ class Driver {
})
.then(() => {
const links = Array.prototype.reduce.call(
browser.document.getElementsByTagName('a'),
(acc, link) => {
if (link.protocol.match(/https?:/) || link.hostname === this.origPageUrl.hostname || extensions.test(link.pathname)) {
browser.document.getElementsByTagName('a'), (results, link) => {
if ( link.protocol.match(/https?:/) || link.hostname === this.origPageUrl.hostname || extensions.test(link.pathname) ) {
link.hash = '';
acc.push(url.parse(link.href));
results.push(url.parse(link.href));
}
return acc;
},
[]
return results;
}, []
);
return resolve(links);

@ -2,7 +2,7 @@
"name": "wappalyzer",
"description": "Uncovers the technologies used on websites",
"homepage": "https://github.com/AliasIO/Wappalyzer",
"version": "5.4.11",
"version": "5.4.12",
"author": "Elbert Alias",
"license": "GPL-3.0",
"repository": {

@ -4,7 +4,7 @@
"author": "Elbert Alias",
"homepage_url": "https://www.wappalyzer.com",
"description": "Identify web technologies",
"version": "5.4.11",
"version": "5.4.12",
"default_locale": "en",
"manifest_version": 2,
"icons": {

Loading…
Cancel
Save