diff --git a/drivers/chrome/manifest.json b/drivers/chrome/manifest.json index 4ce60b463..b6957a52a 100644 --- a/drivers/chrome/manifest.json +++ b/drivers/chrome/manifest.json @@ -1,7 +1,7 @@ { "name": "Wappalyzer", "homepage_url": "https://wappalyzer.com?utm_source=chrome&utm_medium=context&utm_campaign=extensions", "description": "Identifies software on the web", - "version": "2.27", + "version": "2.29", "default_locale": "en", "manifest_version": 2, "icons": { diff --git a/drivers/firefox-sdk/data/images/icon32.png b/drivers/firefox-sdk/data/images/icon32.png index 37a4df7b7..7a9f9fe98 100644 Binary files a/drivers/firefox-sdk/data/images/icon32.png and b/drivers/firefox-sdk/data/images/icon32.png differ diff --git a/drivers/firefox-sdk/data/images/icon32_hot.png b/drivers/firefox-sdk/data/images/icon32_hot.png index a8356656b..0c0cd90ca 100644 Binary files a/drivers/firefox-sdk/data/images/icon32_hot.png and b/drivers/firefox-sdk/data/images/icon32_hot.png differ diff --git a/drivers/firefox-sdk/images/icon128.png b/drivers/firefox-sdk/images/icon128.png index 0e1e1fb0c..c2eef6b98 100644 Binary files a/drivers/firefox-sdk/images/icon128.png and b/drivers/firefox-sdk/images/icon128.png differ diff --git a/drivers/firefox-sdk/images/icon128_hot.png b/drivers/firefox-sdk/images/icon128_hot.png new file mode 100644 index 000000000..0e1e1fb0c Binary files /dev/null and b/drivers/firefox-sdk/images/icon128_hot.png differ diff --git a/drivers/firefox-sdk/images/icon48.png b/drivers/firefox-sdk/images/icon48.png index 00bd19d77..5c0ac3909 100644 Binary files a/drivers/firefox-sdk/images/icon48.png and b/drivers/firefox-sdk/images/icon48.png differ diff --git a/drivers/firefox-sdk/images/icon48_hot.png b/drivers/firefox-sdk/images/icon48_hot.png new file mode 100644 index 000000000..00bd19d77 Binary files /dev/null and b/drivers/firefox-sdk/images/icon48_hot.png differ diff --git a/drivers/firefox-sdk/images/icon64.png b/drivers/firefox-sdk/images/icon64.png index 1954d72c1..ad3dbcf49 100644 Binary files a/drivers/firefox-sdk/images/icon64.png and b/drivers/firefox-sdk/images/icon64.png differ diff --git a/drivers/firefox-sdk/images/icon64_hot.png b/drivers/firefox-sdk/images/icon64_hot.png new file mode 100644 index 000000000..1954d72c1 Binary files /dev/null and b/drivers/firefox-sdk/images/icon64_hot.png differ diff --git a/drivers/firefox-sdk/lib/driver.js b/drivers/firefox-sdk/lib/driver.js index 761fb6ab6..9271d3126 100644 --- a/drivers/firefox-sdk/lib/driver.js +++ b/drivers/firefox-sdk/lib/driver.js @@ -10,6 +10,7 @@ categoryNames = {}, data = require('sdk/self').data, ss = require('sdk/simple-storage'), + sp = require("sdk/simple-prefs"), tabs = require('sdk/tabs'), panel = require('sdk/panel').Panel({ width: 250, @@ -22,7 +23,26 @@ label: 'Wappalyzer', contentURL: data.url('images/icon32.png'), 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) { tabCache[tab.id] = { count: 0, appsDetected: [] }; @@ -36,21 +56,7 @@ w.driver.displayApps(); tabs.activeTab.on('ready', 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); - }); + initTab(tab); }); }); @@ -93,6 +99,8 @@ for each ( var tab in tabs ) { tabCache[tab.id] = { count: 0, appsDetected: [] }; + + initTab(tab); } var httpRequestObserver = { @@ -175,7 +183,7 @@ ping: function() { var Request = require('sdk/request').Request; - if ( Object.keys(w.ping.hostnames).length ) { + if ( Object.keys(w.ping.hostnames).length && sp.prefs.tracking ) { Request({ url: w.config.websiteURL + 'ping/v2/', content: { json: encodeURIComponent(JSON.stringify(w.ping)) }, diff --git a/drivers/firefox-sdk/locale/de-DE.properties b/drivers/firefox-sdk/locale/de-DE.properties index 4b4c8314a..9269fedd1 100755 --- a/drivers/firefox-sdk/locale/de-DE.properties +++ b/drivers/firefox-sdk/locale/de-DE.properties @@ -1,44 +1,62 @@ -name = Wappalyzer -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+/. +name = Wappalyzer +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+/. +help = Wappalyzer - klicken für Details und Einstellungen -cat1 = CMS -cat2 = Message Board -cat3 = Database Manager -cat4 = Documentation Tool -cat5 = Widget -cat6 = Web Shop -cat7 = Photo Gallery -cat8 = Wiki -cat9 = Hosting Panel -cat10 = Analytics -cat11 = Blog -cat12 = JavaScript Framework -cat13 = Issue Tracker -cat14 = Video Player -cat15 = Comment System -cat16 = CAPTCHA -cat17 = Font Script -cat18 = Web Framework -cat19 = Miscellaneous -cat20 = Editor -cat21 = LMS -cat22 = Web Server -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 +showIcons = Applikations-Icons zeigen +preferences = Weitere Optionen ... +addonBar = In Addon-Leiste platzieren (Ctrl+/ oder Cmd+/) +categories = Kategorienverwaltung +performance = Performance +interface = Interface +tracking_title = Tracken +tracking_description = Sende anonyme Reports über gefundene Applikationen zu Forschungszwecken an wappalyzer.com +analyzeHeaders = Analyze response headers +analyzeJavaScript = Analyze JavaScript +analyzeOnload = Analyze onLoad events + +feedback = Feedback +github = Github +twitter = Twitter +website = Zu wappalyzer.com browsen + +cat1 = CMS +cat2 = Message Board +cat3 = Database Manager +cat4 = Documentation Tool +cat5 = Widget +cat6 = Web Shop +cat7 = Photo Gallery +cat8 = Wiki +cat9 = Hosting Panel +cat10 = Analytics +cat11 = Blog +cat12 = JavaScript Framework +cat13 = Issue Tracker +cat14 = Video Player +cat15 = Comment System +cat16 = CAPTCHA +cat17 = Font Script +cat18 = Web Framework +cat19 = Miscellaneous +cat20 = Editor +cat21 = LMS +cat22 = Web Server +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 diff --git a/drivers/firefox-sdk/locale/en-GB.properties b/drivers/firefox-sdk/locale/en-GB.properties index ce1f53fbf..ec9648a1e 100755 --- a/drivers/firefox-sdk/locale/en-GB.properties +++ b/drivers/firefox-sdk/locale/en-GB.properties @@ -1,44 +1,62 @@ -name = Wappalyzer -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+/. +name = Wappalyzer +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+/. +help = Wappalyzer - Click for more detail and settings -cat1 = CMS -cat2 = Message Board -cat3 = Database Manager -cat4 = Documentation Tool -cat5 = Widget -cat6 = Web Shop -cat7 = Photo Gallery -cat8 = Wiki -cat9 = Hosting Panel -cat10 = Analytics -cat11 = Blog -cat12 = JavaScript Framework -cat13 = Issue Tracker -cat14 = Video Player -cat15 = Comment System -cat16 = CAPTCHA -cat17 = Font Script -cat18 = Web Framework -cat19 = Miscellaneous -cat20 = Editor -cat21 = LMS -cat22 = Web Server -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 +showIcons = Show application icons +preferences = Options +addonBar = Place in addon-bar (press Ctrl+/ or Cmd+/ to toggle) +categories = Categories +performance = Performance +interface = Interface +tracking_title = Tracking +tracking_description = Anonymously send reports on detected applications to wappalyzer.com for analysis +analyzeHeaders = Analyze response headers +analyzeJavaScript = Analyze JavaScript +analyzeOnload = Analyze onLoad events + +feedback = Feedback +github = Github +twitter = Twitter +website = Go to wappalyzer.com + +cat1 = CMS +cat2 = Message Board +cat3 = Database Manager +cat4 = Documentation Tool +cat5 = Widget +cat6 = Web Shop +cat7 = Photo Gallery +cat8 = Wiki +cat9 = Hosting Panel +cat10 = Analytics +cat11 = Blog +cat12 = JavaScript Framework +cat13 = Issue Tracker +cat14 = Video Player +cat15 = Comment System +cat16 = CAPTCHA +cat17 = Font Script +cat18 = Web Framework +cat19 = Miscellaneous +cat20 = Editor +cat21 = LMS +cat22 = Web Server +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 diff --git a/drivers/firefox-sdk/locale/en-US.properties b/drivers/firefox-sdk/locale/en-US.properties index ce1f53fbf..2b5f958a4 100755 --- a/drivers/firefox-sdk/locale/en-US.properties +++ b/drivers/firefox-sdk/locale/en-US.properties @@ -1,44 +1,62 @@ -name = Wappalyzer -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+/. +name = Wappalyzer +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+/. +help = Wappalyzer - Click for more detail and settings -cat1 = CMS -cat2 = Message Board -cat3 = Database Manager -cat4 = Documentation Tool -cat5 = Widget -cat6 = Web Shop -cat7 = Photo Gallery -cat8 = Wiki -cat9 = Hosting Panel -cat10 = Analytics -cat11 = Blog -cat12 = JavaScript Framework -cat13 = Issue Tracker -cat14 = Video Player -cat15 = Comment System -cat16 = CAPTCHA -cat17 = Font Script -cat18 = Web Framework -cat19 = Miscellaneous -cat20 = Editor -cat21 = LMS -cat22 = Web Server -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 +showIcons = Show application icons +preferences = Options +addonBar = Place in addon-bar (press Ctrl+/ or Cmd+/ to toggle) +categories = Categories +performance = Performance +interface = Interface +tracking_title = Tracking +research_description = Anonymously send reports on detected applications to wappalyzer.com for analysis +analyzeHeaders = Analyze response headers +analyzeJavaScript = Analyze JavaScript +analyzeOnload = Analyze onLoad events + +feedback = Feedback +github = Github +twitter = Twitter +website = Go to wappalyzer.com + +cat1 = CMS +cat2 = Message Board +cat3 = Database Manager +cat4 = Documentation Tool +cat5 = Widget +cat6 = Web Shop +cat7 = Photo Gallery +cat8 = Wiki +cat9 = Hosting Panel +cat10 = Analytics +cat11 = Blog +cat12 = JavaScript Framework +cat13 = Issue Tracker +cat14 = Video Player +cat15 = Comment System +cat16 = CAPTCHA +cat17 = Font Script +cat18 = Web Framework +cat19 = Miscellaneous +cat20 = Editor +cat21 = LMS +cat22 = Web Server +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 diff --git a/drivers/firefox-sdk/locale/es-ES.properties b/drivers/firefox-sdk/locale/es-ES.properties index 77dfb7ec7..f206eee3b 100755 --- a/drivers/firefox-sdk/locale/es-ES.properties +++ b/drivers/firefox-sdk/locale/es-ES.properties @@ -1,44 +1,62 @@ -name = Wappalyzer -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+/. +name = Wappalyzer +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+/. +help = Wappalyzer - Clic para mas detalles y configuración -cat1 = Gestor de Contenido -cat2 = Foro -cat3 = estor de Bases de Datos -cat4 = Herramienta de Documentación -cat5 = Widget -cat6 = Tienda Web -cat7 = Galería fotográfica -cat8 = Wiki -cat9 = Panel de Hosting -cat10 = Analítica -cat11 = Blog -cat12 = Framework JavaScript -cat13 = Gestor de Incidencias -cat14 = Reproductor de Vídeo -cat15 = Sistema de Comentarios -cat16 = CAPTCHA -cat17 = Tipografía -cat18 = Framework Web -cat19 = Miscelánea -cat20 = Editor -cat21 = LMS -cat22 = Servidor Web -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 +showIcons = Mostrar iconos de aplicaciones +preferences = Opciones +addonBar = Colocar en barra de complementos (pulsa Ctrl+/ o Cmd+/ para alternar) +categories = Categorías +performance = Rendimiento +interface = Interfaz +tracking_title = Seguimiento +tracking_description = Enviar informes anónimos sobre las aplicaciones detectadas a wappalyzer.com para análisis +analyzeHeaders = Analizar cabeceras de respuesta +analyzeJavaScript = Analizar JavaScript +analyzeOnload = Analizar eventos onLoad + +feedback = Opinión +github = Github +twitter = Twitter +website = Ir a wappalyzer.com + +cat1 = Gestor de Contenido +cat2 = Foro +cat3 = estor de Bases de Datos +cat4 = Herramienta de Documentación +cat5 = Widget +cat6 = Tienda Web +cat7 = Galería fotográfica +cat8 = Wiki +cat9 = Panel de Hosting +cat10 = Analítica +cat11 = Blog +cat12 = Framework JavaScript +cat13 = Gestor de Incidencias +cat14 = Reproductor de Vídeo +cat15 = Sistema de Comentarios +cat16 = CAPTCHA +cat17 = Tipografía +cat18 = Framework Web +cat19 = Miscelánea +cat20 = Editor +cat21 = LMS +cat22 = Servidor Web +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 diff --git a/drivers/firefox-sdk/locale/fr-FR.properties b/drivers/firefox-sdk/locale/fr-FR.properties index e00a4da26..1737a8eeb 100644 --- a/drivers/firefox-sdk/locale/fr-FR.properties +++ b/drivers/firefox-sdk/locale/fr-FR.properties @@ -1,44 +1,62 @@ -name = Wappalyzer -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+/. +name = Wappalyzer +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+/. +help = Wappalyzer - Cliquer pour plus de détails et options -cat1 = CMS -cat2 = Forum -cat3 = Gestionnaire de base de données -cat4 = Outil de documentation -cat5 = Widget -cat6 = Boutique en ligne -cat7 = Galerie photo -cat8 = Wiki -cat9 = Gestionnaires de serveur -cat10 = Outil de statistiques -cat11 = Blog -cat12 = Framework JavaScript -cat13 = Outils de suivi de problèmes -cat14 = Lecteur de vidéos -cat15 = Système de commentaires -cat16 = CAPTCHA -cat17 = Script de police -cat18 = Framework web -cat19 = Divers -cat20 = Editeur -cat21 = LMS -cat22 = Serveur web -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 +showIcons = Montrer les icônes des applications +preferences = Plus d'options... +addonBar = Placer dans la barre des modules (Ctrl+/) +categories = Gérer les catégories +performance = Performance +interface = Interface +tracking_title = Traçage +tracking_description = Envoyer anonymement des rapports sur les applications détectées à wappalyzer.com pour la recherche +analyzeHeaders = Analyser les headers +analyzeJavaScript = Analyser le JavaScript +analyzeOnload = Analyser les évènements au chargement + +feedback = Donner votre avis +github = Github +twitter = Twitter +website = Aller à wappalyzer.com + +cat1 = CMS +cat2 = Forum +cat3 = Gestionnaire de base de données +cat4 = Outil de documentation +cat5 = Widget +cat6 = Boutique en ligne +cat7 = Galerie photo +cat8 = Wiki +cat9 = Gestionnaires de serveur +cat10 = Outil de statistiques +cat11 = Blog +cat12 = Framework JavaScript +cat13 = Outils de suivi de problèmes +cat14 = Lecteur de vidéos +cat15 = Système de commentaires +cat16 = CAPTCHA +cat17 = Script de police +cat18 = Framework web +cat19 = Divers +cat20 = Editeur +cat21 = LMS +cat22 = Serveur web +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 diff --git a/drivers/firefox-sdk/locale/nl-NL.properties b/drivers/firefox-sdk/locale/nl-NL.properties index 3a2ed07bb..548359e93 100755 --- a/drivers/firefox-sdk/locale/nl-NL.properties +++ b/drivers/firefox-sdk/locale/nl-NL.properties @@ -1,44 +1,62 @@ -name = Wappalyzer -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+/. +name = Wappalyzer +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+/. +help = Wappalyzer - Klik voor meer informatie -cat1 = CMS -cat2 = Forum -cat3 = Database Manager -cat4 = Documentatie Tool -cat5 = Widget -cat6 = Web Winkel -cat7 = Photo Gallerij -cat8 = Wiki -cat9 = Hosting Paneel -cat10 = Analytics -cat11 = Blog -cat12 = JavaScript Framework -cat13 = Issue Tracker -cat14 = Video Speler -cat15 = Comment Systeem -cat16 = CAPTCHA -cat17 = Font Script -cat18 = Web Framework -cat19 = Overige -cat20 = Editor -cat21 = LMS -cat22 = Web Server -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 +showIcons = Iconen zichtbaar +preferences = Meer opties... +addonBar = Plaats in addon-bar (klik Ctrl+/ of Cmd+/) +categories = Beheer categorien +performance = Performance +interface = Interface +tracking_title = Tracking +tracking_description = Verzend anonieme informatie over applicaties naar wappalyzer.com voor onderzoek +analyzeHeaders = Analiseer response headers +analyzeJavaScript = Analiseer JavaScript +analyzeOnload = Analiseer onLoad events + +feedback = Feedback +github = Github +twitter = Twitter +website = Ga naar wappalyzer.com + +cat1 = CMS +cat2 = Forum +cat3 = Database Manager +cat4 = Documentatie Tool +cat5 = Widget +cat6 = Web Winkel +cat7 = Photo Gallerij +cat8 = Wiki +cat9 = Hosting Paneel +cat10 = Analytics +cat11 = Blog +cat12 = JavaScript Framework +cat13 = Issue Tracker +cat14 = Video Speler +cat15 = Comment Systeem +cat16 = CAPTCHA +cat17 = Font Script +cat18 = Web Framework +cat19 = Overige +cat20 = Editor +cat21 = LMS +cat22 = Web Server +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 diff --git a/drivers/firefox-sdk/package.json b/drivers/firefox-sdk/package.json index cb2974343..6c7b96144 100644 --- a/drivers/firefox-sdk/package.json +++ b/drivers/firefox-sdk/package.json @@ -1,12 +1,19 @@ { "name": "wappalyzer", "title": "Wappalyzer", - "icon": "images/icon48.png", - "icon64": "images/icon64.png", - "id": "jid1-GkgHgreNo1BZ4g", + "icon": "images/icon48_hot.png", + "icon64": "images/icon64_hot.png", + "id": "ec8030f7-c20a-464f-9b0e-13a3a9e97384", "description": "Identifies software on the web", "author": "Elbert Alias", "license": "GPLv3", "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 + }] } diff --git a/drivers/firefox/install.rdf b/drivers/firefox/install.rdf index b7a734571..ae57f36ec 100644 --- a/drivers/firefox/install.rdf +++ b/drivers/firefox/install.rdf @@ -3,7 +3,7 @@ wappalyzer@crunchlabz.com - 2.7.5 + 2.7.7 2 true @@ -12,7 +12,7 @@ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} 4.0 - 29.* + 28.* diff --git a/share/js/wappalyzer.js b/share/js/wappalyzer.js index 9cffab7b4..a3ecc857a 100644 --- a/share/js/wappalyzer.js +++ b/share/js/wappalyzer.js @@ -487,7 +487,7 @@ var wappalyzer = (function() { 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; data = null;