Chrome & Firefox
See the technologies used on websites you visit at a glance.
Wappalyzer for Chrome Wappalyzer for Firefox
Bookmarklet
Drag this button to your bookmarks toolbar.
(function() {
var
d = document,
e = d.getElementById('wappalyzer-container')
;
if ( e !== null ) { d.body.removeChild(e); }
var
u = 'https://wappalyzer.com/',
t = new Date().getTime(),
c = d.createElement('div'),
p = d.createElement('div'),
l = d.createElement('link'),
s = d.createElement('script')
;
c.setAttribute('id', 'wappalyzer-container');
l.setAttribute('rel', 'stylesheet');
l.setAttribute('href', u + 'css/bookmarklet.css');
d.head.appendChild(l);
p.setAttribute('id', 'wappalyzer-pending');
p.setAttribute('style', 'background-image: url(' + u + 'images/spinner.gif) !important');
c.appendChild(p);
s.setAttribute('src', u + 'bookmarklet/wappalyzer.js');
s.onload = function() {
s = d.createElement('script');
s.setAttribute('src', u + 'bookmarklet/apps.js');
s.onload = function() {
s = d.createElement('script');
s.setAttribute('src', u + 'bookmarklet/driver.js');
c.appendChild(s);
};
c.appendChild(s);
};
c.appendChild(s);
d.body.appendChild(c);
})();
Wappalyzer
Docker
Run Wappalyzer on any Linux, OS X or Windows machine with Docker.
Pull command
docker pull wappalyzer/cli
Usage
docker run wappalyzer/cli https://wappalyzer.com
NPM
Installation
npm i wappalyzer
Usage
node index.js https://wappalyzer.com --quiet
JavaScript example
const wappalyzer = require('wappalyzer');
wappalyzer.run(['https://wappalyzer.com', '--quiet'], function(stdout, stderr) {
if ( stdout ) {
process.stdout.write(stdout);
}
if ( stderr ) {
process.stderr.write(stderr);
}
});
Git
Clone
git clone https://github.com/AliasIO/Wappalyzer.git