Build v5.4.12

main
Elbert Alias 7 years ago
parent 4d307ef90b
commit bf47697939

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

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

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

Loading…
Cancel
Save