You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.3 KiB
91 lines
2.3 KiB
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="popup.css">
|
|
|
|
<script>
|
|
var wappalyzer = {};
|
|
</script>
|
|
|
|
<script src="js/lib/jquery.min.js"></script>
|
|
<script src="js/apps.js"></script>
|
|
<script src="js/locale.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="detected-apps"></div>
|
|
|
|
<div id="analyze-headers">Analyze headers</div>
|
|
|
|
<script>
|
|
(function() {
|
|
var popup = {
|
|
pollHeaders: null,
|
|
|
|
init: function() {
|
|
chrome.tabs.getSelected(null, function(tab) {
|
|
if ( tab.url.match(/https?:\/\//) ) {
|
|
$('#detected-apps').html('<div class="empty">No applications detected.</div>');
|
|
|
|
$('#analyze-headers').show().click(function() {
|
|
$(this).addClass('pending');
|
|
|
|
chrome.extension.sendRequest({ id: 'fetch_headers', tab: tab });
|
|
|
|
popup.pollHeaders = setInterval(popup.displayApps, 100);
|
|
});
|
|
} else {
|
|
$('#detected-apps').html('<div class="empty">Nothing to do here.</div>');
|
|
|
|
$('#analyze-headers').hide();
|
|
}
|
|
});
|
|
|
|
popup.displayApps();
|
|
},
|
|
|
|
displayApps: function() {
|
|
chrome.tabs.getSelected(null, function(tab) {
|
|
chrome.extension.sendRequest({ id: 'get_apps', tab: tab }, function(response) {
|
|
if ( response.tabCache.analyzed.indexOf('headers') > 0 ) {
|
|
clearTimeout(popup.pollHeaders);
|
|
|
|
$('#analyze-headers').removeClass('pending');
|
|
}
|
|
|
|
if ( response.tabCache.count > 0 ) {
|
|
$('#detected-apps').html('');
|
|
|
|
response.tabCache.appsDetected.map(function(appName) {
|
|
html =
|
|
'<div class="detected-app">' +
|
|
'<a target="_blank" href="http://wappalyzer.com/applications/' + encodeURIComponent(appName) + '">' +
|
|
'<img src="images/icons/' + appName + '.png"/>' +
|
|
'<span class="label">' + appName + '</span>' +
|
|
'</a>';
|
|
|
|
wappalyzer.apps[appName].cats.map(function(cat) {
|
|
html +=
|
|
'<a target="_blank" href="http://wappalyzer.com/categories/' + wappalyzer.categories[cat] + '">' +
|
|
'<span class="category">' + categoryNames[cat] + '</span>' +
|
|
'</a>';
|
|
});
|
|
|
|
html +=
|
|
'</a>' +
|
|
'</div>';
|
|
|
|
$('#detected-apps').append(html);
|
|
});
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
popup.init();
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html>
|