Firefox SDK driver progress

main
Elbert Alias 11 years ago
parent 769136d20f
commit 2efdf4e8af

@ -1,7 +1,7 @@
{ "name": "Wappalyzer", { "name": "Wappalyzer",
"homepage_url": "https://wappalyzer.com?utm_source=chrome&utm_medium=context&utm_campaign=extensions", "homepage_url": "https://wappalyzer.com?utm_source=chrome&utm_medium=context&utm_campaign=extensions",
"description": "Identifies software on the web", "description": "Identifies software on the web",
"version": "2.27", "version": "2.29",
"default_locale": "en", "default_locale": "en",
"manifest_version": 2, "manifest_version": 2,
"icons": { "icons": {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

@ -10,6 +10,7 @@
categoryNames = {}, categoryNames = {},
data = require('sdk/self').data, data = require('sdk/self').data,
ss = require('sdk/simple-storage'), ss = require('sdk/simple-storage'),
sp = require("sdk/simple-prefs"),
tabs = require('sdk/tabs'), tabs = require('sdk/tabs'),
panel = require('sdk/panel').Panel({ panel = require('sdk/panel').Panel({
width: 250, width: 250,
@ -22,7 +23,26 @@
label: 'Wappalyzer', label: 'Wappalyzer',
contentURL: data.url('images/icon32.png'), contentURL: data.url('images/icon32.png'),
panel: panel panel: panel
}),
initTab;
initTab = function(tab) {
var worker = tab.attach({
contentScriptFile: data.url('js/tab.js')
});
worker.port.on('analyze', function(message) {
if ( headersCache[tab.url] !== undefined ) {
message.analyze.headers = headersCache[tab.url];
}
w.analyze(message.hostname, message.url, message.analyze);
});
worker.port.on('log', function(message) {
w.log('[ tab.js ] ' + message);
}); });
}
tabs.on('open', function(tab) { tabs.on('open', function(tab) {
tabCache[tab.id] = { count: 0, appsDetected: [] }; tabCache[tab.id] = { count: 0, appsDetected: [] };
@ -36,21 +56,7 @@
w.driver.displayApps(); w.driver.displayApps();
tabs.activeTab.on('ready', function(tab) { tabs.activeTab.on('ready', function(tab) {
var worker = tab.attach({ initTab(tab);
contentScriptFile: data.url('js/tab.js')
});
worker.port.on('analyze', function(message) {
if ( headersCache[tab.url] !== undefined ) {
message.analyze.headers = headersCache[tab.url];
}
w.analyze(message.hostname, message.url, message.analyze);
});
worker.port.on('log', function(message) {
w.log('[ tab.js ] ' + message);
});
}); });
}); });
@ -93,6 +99,8 @@
for each ( var tab in tabs ) { for each ( var tab in tabs ) {
tabCache[tab.id] = { count: 0, appsDetected: [] }; tabCache[tab.id] = { count: 0, appsDetected: [] };
initTab(tab);
} }
var httpRequestObserver = { var httpRequestObserver = {
@ -175,7 +183,7 @@
ping: function() { ping: function() {
var Request = require('sdk/request').Request; var Request = require('sdk/request').Request;
if ( Object.keys(w.ping.hostnames).length ) { if ( Object.keys(w.ping.hostnames).length && sp.prefs.tracking ) {
Request({ Request({
url: w.config.websiteURL + 'ping/v2/', url: w.config.websiteURL + 'ping/v2/',
content: { json: encodeURIComponent(JSON.stringify(w.ping)) }, content: { json: encodeURIComponent(JSON.stringify(w.ping)) },

@ -1,44 +1,62 @@
name = Wappalyzer name = Wappalyzer
noAppsDetected = Keine Applikationen erkannt noAppsDetected = Keine Applikationen erkannt
addonBar = Wappalyzer has been placed in the add-on bar.\n\nTo show the add-on bar, close this window and press Ctrl+/. addonBar = Wappalyzer has been placed in the add-on bar.\n\nTo show the add-on bar, close this window and press Ctrl+/.
help = Wappalyzer - klicken für Details und Einstellungen
cat1 = CMS showIcons = Applikations-Icons zeigen
cat2 = Message Board preferences = Weitere Optionen ...
cat3 = Database Manager addonBar = In Addon-Leiste platzieren (Ctrl+/ oder Cmd+/)
cat4 = Documentation Tool categories = Kategorienverwaltung
cat5 = Widget performance = Performance
cat6 = Web Shop interface = Interface
cat7 = Photo Gallery tracking_title = Tracken
cat8 = Wiki tracking_description = Sende anonyme Reports über gefundene Applikationen zu Forschungszwecken an wappalyzer.com
cat9 = Hosting Panel analyzeHeaders = Analyze response headers
cat10 = Analytics analyzeJavaScript = Analyze JavaScript
cat11 = Blog analyzeOnload = Analyze onLoad events
cat12 = JavaScript Framework
cat13 = Issue Tracker feedback = Feedback
cat14 = Video Player github = Github
cat15 = Comment System twitter = Twitter
cat16 = CAPTCHA website = Zu wappalyzer.com browsen
cat17 = Font Script
cat18 = Web Framework cat1 = CMS
cat19 = Miscellaneous cat2 = Message Board
cat20 = Editor cat3 = Database Manager
cat21 = LMS cat4 = Documentation Tool
cat22 = Web Server cat5 = Widget
cat23 = Cache Tool cat6 = Web Shop
cat24 = Rich Text Editor cat7 = Photo Gallery
cat25 = Javascript Graphics cat8 = Wiki
cat26 = Mobile Framework cat9 = Hosting Panel
cat27 = Programming Language cat10 = Analytics
cat28 = Operating System cat11 = Blog
cat29 = Search Engine cat12 = JavaScript Framework
cat30 = Web mail cat13 = Issue Tracker
cat31 = CDN cat14 = Video Player
cat32 = Marketing Automation cat15 = Comment System
cat33 = Web Server Extension cat16 = CAPTCHA
cat34 = Database cat17 = Font Script
cat35 = Map cat18 = Web Framework
cat36 = Advertizing Network cat19 = Miscellaneous
cat37 = Network Device cat20 = Editor
cat38 = Media Server cat21 = LMS
cat39 = Webcam cat22 = Web Server
cat40 = Printer cat23 = Cache Tool
cat24 = Rich Text Editor
cat25 = Javascript Graphics
cat26 = Mobile Framework
cat27 = Programming Language
cat28 = Operating System
cat29 = Search Engine
cat30 = Web mail
cat31 = CDN
cat32 = Marketing Automation
cat33 = Web Server Extension
cat34 = Database
cat35 = Map
cat36 = Advertizing Network
cat37 = Network Device
cat38 = Media Server
cat39 = Webcam
cat40 = Printer

@ -1,44 +1,62 @@
name = Wappalyzer name = Wappalyzer
noAppsDetected = No applications detected noAppsDetected = No applications detected
addonBar = Wappalyzer has been placed in the add-on bar.\n\nTo show the add-on bar, close this window and press Ctrl+/. addonBar = Wappalyzer has been placed in the add-on bar.\n\nTo show the add-on bar, close this window and press Ctrl+/.
help = Wappalyzer - Click for more detail and settings
cat1 = CMS showIcons = Show application icons
cat2 = Message Board preferences = Options
cat3 = Database Manager addonBar = Place in addon-bar (press Ctrl+/ or Cmd+/ to toggle)
cat4 = Documentation Tool categories = Categories
cat5 = Widget performance = Performance
cat6 = Web Shop interface = Interface
cat7 = Photo Gallery tracking_title = Tracking
cat8 = Wiki tracking_description = Anonymously send reports on detected applications to wappalyzer.com for analysis
cat9 = Hosting Panel analyzeHeaders = Analyze response headers
cat10 = Analytics analyzeJavaScript = Analyze JavaScript
cat11 = Blog analyzeOnload = Analyze onLoad events
cat12 = JavaScript Framework
cat13 = Issue Tracker feedback = Feedback
cat14 = Video Player github = Github
cat15 = Comment System twitter = Twitter
cat16 = CAPTCHA website = Go to wappalyzer.com
cat17 = Font Script
cat18 = Web Framework cat1 = CMS
cat19 = Miscellaneous cat2 = Message Board
cat20 = Editor cat3 = Database Manager
cat21 = LMS cat4 = Documentation Tool
cat22 = Web Server cat5 = Widget
cat23 = Cache Tool cat6 = Web Shop
cat24 = Rich Text Editor cat7 = Photo Gallery
cat25 = Javascript Graphics cat8 = Wiki
cat26 = Mobile Framework cat9 = Hosting Panel
cat27 = Programming Language cat10 = Analytics
cat28 = Operating System cat11 = Blog
cat29 = Search Engine cat12 = JavaScript Framework
cat30 = Web Mail cat13 = Issue Tracker
cat31 = CDN cat14 = Video Player
cat32 = Marketing Automation cat15 = Comment System
cat33 = Web Server Extension cat16 = CAPTCHA
cat34 = Database cat17 = Font Script
cat35 = Map cat18 = Web Framework
cat36 = Advertising Network cat19 = Miscellaneous
cat37 = Network Device cat20 = Editor
cat38 = Media Server cat21 = LMS
cat39 = Webcam cat22 = Web Server
cat40 = Printer cat23 = Cache Tool
cat24 = Rich Text Editor
cat25 = Javascript Graphics
cat26 = Mobile Framework
cat27 = Programming Language
cat28 = Operating System
cat29 = Search Engine
cat30 = Web Mail
cat31 = CDN
cat32 = Marketing Automation
cat33 = Web Server Extension
cat34 = Database
cat35 = Map
cat36 = Advertising Network
cat37 = Network Device
cat38 = Media Server
cat39 = Webcam
cat40 = Printer

@ -1,44 +1,62 @@
name = Wappalyzer name = Wappalyzer
noAppsDetected = No applications detected noAppsDetected = No applications detected
addonBar = Wappalyzer has been placed in the add-on bar.\n\nTo show the add-on bar, close this window and press Ctrl+/. addonBar = Wappalyzer has been placed in the add-on bar.\n\nTo show the add-on bar, close this window and press Ctrl+/.
help = Wappalyzer - Click for more detail and settings
cat1 = CMS showIcons = Show application icons
cat2 = Message Board preferences = Options
cat3 = Database Manager addonBar = Place in addon-bar (press Ctrl+/ or Cmd+/ to toggle)
cat4 = Documentation Tool categories = Categories
cat5 = Widget performance = Performance
cat6 = Web Shop interface = Interface
cat7 = Photo Gallery tracking_title = Tracking
cat8 = Wiki research_description = Anonymously send reports on detected applications to wappalyzer.com for analysis
cat9 = Hosting Panel analyzeHeaders = Analyze response headers
cat10 = Analytics analyzeJavaScript = Analyze JavaScript
cat11 = Blog analyzeOnload = Analyze onLoad events
cat12 = JavaScript Framework
cat13 = Issue Tracker feedback = Feedback
cat14 = Video Player github = Github
cat15 = Comment System twitter = Twitter
cat16 = CAPTCHA website = Go to wappalyzer.com
cat17 = Font Script
cat18 = Web Framework cat1 = CMS
cat19 = Miscellaneous cat2 = Message Board
cat20 = Editor cat3 = Database Manager
cat21 = LMS cat4 = Documentation Tool
cat22 = Web Server cat5 = Widget
cat23 = Cache Tool cat6 = Web Shop
cat24 = Rich Text Editor cat7 = Photo Gallery
cat25 = Javascript Graphics cat8 = Wiki
cat26 = Mobile Framework cat9 = Hosting Panel
cat27 = Programming Language cat10 = Analytics
cat28 = Operating System cat11 = Blog
cat29 = Search Engine cat12 = JavaScript Framework
cat30 = Web Mail cat13 = Issue Tracker
cat31 = CDN cat14 = Video Player
cat32 = Marketing Automation cat15 = Comment System
cat33 = Web Server Extension cat16 = CAPTCHA
cat34 = Database cat17 = Font Script
cat35 = Map cat18 = Web Framework
cat36 = Advertising Network cat19 = Miscellaneous
cat37 = Network Device cat20 = Editor
cat38 = Media Server cat21 = LMS
cat39 = Webcam cat22 = Web Server
cat40 = Printer cat23 = Cache Tool
cat24 = Rich Text Editor
cat25 = Javascript Graphics
cat26 = Mobile Framework
cat27 = Programming Language
cat28 = Operating System
cat29 = Search Engine
cat30 = Web Mail
cat31 = CDN
cat32 = Marketing Automation
cat33 = Web Server Extension
cat34 = Database
cat35 = Map
cat36 = Advertising Network
cat37 = Network Device
cat38 = Media Server
cat39 = Webcam
cat40 = Printer

@ -1,44 +1,62 @@
name = Wappalyzer name = Wappalyzer
noAppsDetected = Aplicaciones no detectadas noAppsDetected = Aplicaciones no detectadas
addonBar = Wappalyzer se ha colocado en la barra de complementos.\n\nPara mostrar la barra de complementos, cierra esta ventana y pulsa Ctrl+/. addonBar = Wappalyzer se ha colocado en la barra de complementos.\n\nPara mostrar la barra de complementos, cierra esta ventana y pulsa Ctrl+/.
help = Wappalyzer - Clic para mas detalles y configuración
cat1 = Gestor de Contenido showIcons = Mostrar iconos de aplicaciones
cat2 = Foro preferences = Opciones
cat3 = estor de Bases de Datos addonBar = Colocar en barra de complementos (pulsa Ctrl+/ o Cmd+/ para alternar)
cat4 = Herramienta de Documentación categories = Categorías
cat5 = Widget performance = Rendimiento
cat6 = Tienda Web interface = Interfaz
cat7 = Galería fotográfica tracking_title = Seguimiento
cat8 = Wiki tracking_description = Enviar informes anónimos sobre las aplicaciones detectadas a wappalyzer.com para análisis
cat9 = Panel de Hosting analyzeHeaders = Analizar cabeceras de respuesta
cat10 = Analítica analyzeJavaScript = Analizar JavaScript
cat11 = Blog analyzeOnload = Analizar eventos onLoad
cat12 = Framework JavaScript
cat13 = Gestor de Incidencias feedback = Opinión
cat14 = Reproductor de Vídeo github = Github
cat15 = Sistema de Comentarios twitter = Twitter
cat16 = CAPTCHA website = Ir a wappalyzer.com
cat17 = Tipografía
cat18 = Framework Web cat1 = Gestor de Contenido
cat19 = Miscelánea cat2 = Foro
cat20 = Editor cat3 = estor de Bases de Datos
cat21 = LMS cat4 = Herramienta de Documentación
cat22 = Servidor Web cat5 = Widget
cat23 = Herramienta de Cache cat6 = Tienda Web
cat24 = Editor de Texto Enriquecido cat7 = Galería fotográfica
cat25 = Gráficos Javascript cat8 = Wiki
cat26 = Framework Móvil cat9 = Panel de Hosting
cat27 = Lenguaje de programación cat10 = Analítica
cat28 = Sistema Operativo cat11 = Blog
cat29 = Motor de Búsqueda cat12 = Framework JavaScript
cat30 = Correo Web cat13 = Gestor de Incidencias
cat31 = CDN cat14 = Reproductor de Vídeo
cat32 = Automatización de Marketing cat15 = Sistema de Comentarios
cat33 = Extensión de Servidor Web cat16 = CAPTCHA
cat34 = Base de Datos cat17 = Tipografía
cat35 = Mapa cat18 = Framework Web
cat36 = Red de Publicidad cat19 = Miscelánea
cat37 = Dispositivo de Red cat20 = Editor
cat38 = Servidores de Contenido cat21 = LMS
cat39 = Webcam cat22 = Servidor Web
cat40 = Impresora cat23 = Herramienta de Cache
cat24 = Editor de Texto Enriquecido
cat25 = Gráficos Javascript
cat26 = Framework Móvil
cat27 = Lenguaje de programación
cat28 = Sistema Operativo
cat29 = Motor de Búsqueda
cat30 = Correo Web
cat31 = CDN
cat32 = Automatización de Marketing
cat33 = Extensión de Servidor Web
cat34 = Base de Datos
cat35 = Mapa
cat36 = Red de Publicidad
cat37 = Dispositivo de Red
cat38 = Servidores de Contenido
cat39 = Webcam
cat40 = Impresora

@ -1,44 +1,62 @@
name = Wappalyzer name = Wappalyzer
noAppsDetected = Pas d'applications détectées noAppsDetected = Pas d'applications détectées
addonBar = Wappalyzer a été placé dans la barre des modules.\n\n Pour voir la barre des modules pressez Ctrl+/ ou Cmd+/. addonBar = Wappalyzer a été placé dans la barre des modules.\n\n Pour voir la barre des modules pressez Ctrl+/ ou Cmd+/.
help = Wappalyzer - Cliquer pour plus de détails et options
cat1 = CMS showIcons = Montrer les icônes des applications
cat2 = Forum preferences = Plus d'options...
cat3 = Gestionnaire de base de données addonBar = Placer dans la barre des modules (Ctrl+/)
cat4 = Outil de documentation categories = Gérer les catégories
cat5 = Widget performance = Performance
cat6 = Boutique en ligne interface = Interface
cat7 = Galerie photo tracking_title = Traçage
cat8 = Wiki tracking_description = Envoyer anonymement des rapports sur les applications détectées à wappalyzer.com pour la recherche
cat9 = Gestionnaires de serveur analyzeHeaders = Analyser les headers
cat10 = Outil de statistiques analyzeJavaScript = Analyser le JavaScript
cat11 = Blog analyzeOnload = Analyser les évènements au chargement
cat12 = Framework JavaScript
cat13 = Outils de suivi de problèmes feedback = Donner votre avis
cat14 = Lecteur de vidéos github = Github
cat15 = Système de commentaires twitter = Twitter
cat16 = CAPTCHA website = Aller à wappalyzer.com
cat17 = Script de police
cat18 = Framework web cat1 = CMS
cat19 = Divers cat2 = Forum
cat20 = Editeur cat3 = Gestionnaire de base de données
cat21 = LMS cat4 = Outil de documentation
cat22 = Serveur web cat5 = Widget
cat23 = Outil de cache cat6 = Boutique en ligne
cat24 = Editeur WYSIWYG cat7 = Galerie photo
cat25 = Graphismes JavaScript cat8 = Wiki
cat26 = Framework pour mobiles cat9 = Gestionnaires de serveur
cat27 = Language de programmation cat10 = Outil de statistiques
cat28 = Système d'exploitation cat11 = Blog
cat29 = Moteur de recherche cat12 = Framework JavaScript
cat30 = Web Mail cat13 = Outils de suivi de problèmes
cat31 = CDN cat14 = Lecteur de vidéos
cat32 = Logiciel de marketing cat15 = Système de commentaires
cat33 = Web Server Extension cat16 = CAPTCHA
cat34 = Database cat17 = Script de police
cat35 = Map cat18 = Framework web
cat36 = Advertizing Network cat19 = Divers
cat37 = Network Device cat20 = Editeur
cat38 = Media Server cat21 = LMS
cat39 = Webcam cat22 = Serveur web
cat40 = Printer cat23 = Outil de cache
cat24 = Editeur WYSIWYG
cat25 = Graphismes JavaScript
cat26 = Framework pour mobiles
cat27 = Language de programmation
cat28 = Système d'exploitation
cat29 = Moteur de recherche
cat30 = Web Mail
cat31 = CDN
cat32 = Logiciel de marketing
cat33 = Web Server Extension
cat34 = Database
cat35 = Map
cat36 = Advertizing Network
cat37 = Network Device
cat38 = Media Server
cat39 = Webcam
cat40 = Printer

@ -1,44 +1,62 @@
name = Wappalyzer name = Wappalyzer
noAppsDetected = Geen applications gedetecteerd noAppsDetected = Geen applications gedetecteerd
addonBar = Wappalyzer is in de add-on balk geplaatst. Om de add-on te laten zien, sluit dit bericht en druk Ctrl+/. addonBar = Wappalyzer is in de add-on balk geplaatst. Om de add-on te laten zien, sluit dit bericht en druk Ctrl+/.
help = Wappalyzer - Klik voor meer informatie
cat1 = CMS showIcons = Iconen zichtbaar
cat2 = Forum preferences = Meer opties...
cat3 = Database Manager addonBar = Plaats in addon-bar (klik Ctrl+/ of Cmd+/)
cat4 = Documentatie Tool categories = Beheer categorien
cat5 = Widget performance = Performance
cat6 = Web Winkel interface = Interface
cat7 = Photo Gallerij tracking_title = Tracking
cat8 = Wiki tracking_description = Verzend anonieme informatie over applicaties naar wappalyzer.com voor onderzoek
cat9 = Hosting Paneel analyzeHeaders = Analiseer response headers
cat10 = Analytics analyzeJavaScript = Analiseer JavaScript
cat11 = Blog analyzeOnload = Analiseer onLoad events
cat12 = JavaScript Framework
cat13 = Issue Tracker feedback = Feedback
cat14 = Video Speler github = Github
cat15 = Comment Systeem twitter = Twitter
cat16 = CAPTCHA website = Ga naar wappalyzer.com
cat17 = Font Script
cat18 = Web Framework cat1 = CMS
cat19 = Overige cat2 = Forum
cat20 = Editor cat3 = Database Manager
cat21 = LMS cat4 = Documentatie Tool
cat22 = Web Server cat5 = Widget
cat23 = Cache Tool cat6 = Web Winkel
cat24 = Rich Text Editor cat7 = Photo Gallerij
cat25 = Javascript Graphics cat8 = Wiki
cat26 = Mobiel Framework cat9 = Hosting Paneel
cat27 = Programmeer Taal cat10 = Analytics
cat28 = Operating System cat11 = Blog
cat29 = Zoek Machine cat12 = JavaScript Framework
cat30 = Web Mail cat13 = Issue Tracker
cat31 = CDN cat14 = Video Speler
cat32 = Marketing Automatisering cat15 = Comment Systeem
cat33 = Web Server Extentie cat16 = CAPTCHA
cat34 = Database cat17 = Font Script
cat35 = Landkaart cat18 = Web Framework
cat36 = Advertentie Netwerk cat19 = Overige
cat37 = Network Apparaat cat20 = Editor
cat38 = Media Server cat21 = LMS
cat39 = Webcam cat22 = Web Server
cat40 = Printer cat23 = Cache Tool
cat24 = Rich Text Editor
cat25 = Javascript Graphics
cat26 = Mobiel Framework
cat27 = Programmeer Taal
cat28 = Operating System
cat29 = Zoek Machine
cat30 = Web Mail
cat31 = CDN
cat32 = Marketing Automatisering
cat33 = Web Server Extentie
cat34 = Database
cat35 = Landkaart
cat36 = Advertentie Netwerk
cat37 = Network Apparaat
cat38 = Media Server
cat39 = Webcam
cat40 = Printer

@ -1,12 +1,19 @@
{ {
"name": "wappalyzer", "name": "wappalyzer",
"title": "Wappalyzer", "title": "Wappalyzer",
"icon": "images/icon48.png", "icon": "images/icon48_hot.png",
"icon64": "images/icon64.png", "icon64": "images/icon64_hot.png",
"id": "jid1-GkgHgreNo1BZ4g", "id": "ec8030f7-c20a-464f-9b0e-13a3a9e97384",
"description": "Identifies software on the web", "description": "Identifies software on the web",
"author": "Elbert Alias", "author": "Elbert Alias",
"license": "GPLv3", "license": "GPLv3",
"version": "3.0.0", "version": "3.0.0",
"main": "driver" "main": "driver",
"preferences": [{
"name": "tracking",
"title": "Tracking",
"description": "Anonymously send reports on detected applications to wappalyzer.com for analysis",
"type": "bool",
"value": true
}]
} }

@ -3,7 +3,7 @@
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#"> <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest"> <Description about="urn:mozilla:install-manifest">
<em:id>wappalyzer@crunchlabz.com</em:id> <em:id>wappalyzer@crunchlabz.com</em:id>
<em:version>2.7.5</em:version> <em:version>2.7.7</em:version>
<em:type>2</em:type> <em:type>2</em:type>
<em:unpack>true</em:unpack> <em:unpack>true</em:unpack>
@ -12,7 +12,7 @@
<Description> <Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>4.0</em:minVersion> <em:minVersion>4.0</em:minVersion>
<em:maxVersion>29.*</em:maxVersion> <em:maxVersion>28.*</em:maxVersion>
</Description> </Description>
</em:targetApplication> </em:targetApplication>

@ -487,7 +487,7 @@ var wappalyzer = (function() {
w.log({ hostname: hostname, ping: w.ping.hostnames[hostname] }); w.log({ hostname: hostname, ping: w.ping.hostnames[hostname] });
} }
if ( Object.keys(w.ping.hostnames).length >= 50 ) { driver('ping'); } if ( Object.keys(w.ping.hostnames).length >= 20 ) { driver('ping'); }
apps = null; apps = null;
data = null; data = null;