Web Scan - Web technology lookup
Discover the libraries and web technologies in any websites
¿Qué es Web Scan - Web technology lookup?
Web Scan - Web technology lookup es una extensión de Chrome desarrollada por Karthik S Kumar, y su función principal es "Discover the libraries and web technologies in any websites".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Web Scan - Web technology lookup
Descarga archivos de extensión Web Scan - Web technology lookup en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Free tool to discover the technologies on which any website runs. The tool shows the library names along with icons and version number if available in the address bar. Now in dark mode! This easy to use library requires no configuration. Just add it to your chrome and voila you are ready to go. Lightweight and efficient. This extension will give you a one-click access to find-out the technologies used on the current page that you are visiting. The algorithm can detect 80+ javascript libraries. Visit the support link and file an issue if you think anything is missing. This is an open source project. Fork the project on Github! Note: The tool is completely free It does not access or track your data Coming soon: Detection of the fonts used in webpages Detection of server on which the webpage runs
Información Básica de la Extensión
Nombre | Web Scan - Web technology lookup |
ID | hfcopfpmehaahmglocoolmgidihnjdgn |
URL Oficial | https://chromewebstore.google.com/detail/web-scan-web-technology-l/hfcopfpmehaahmglocoolmgidihnjdgn |
Descripción | Discover the libraries and web technologies in any websites |
Tamaño del Archivo | 236 KB |
Cantidad de Instalaciones | 1,041 |
Versión Actual | 0.0.1 |
Última Actualización | 2020-04-20 |
Fecha de Publicación | 2020-04-18 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Karthik S Kumar |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/00karthik/web-scan |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Scan - Web technology lookup", "short_name": "WebScan - Library detection tool", "version": "0.0.1", "web_accessible_resources": [ "detect.js" ], "description": "Discover the libraries and web technologies in any websites", "icons": { "48": "icons\/icon.png", "128": "icons\/icon.png" }, "browser_action": { "default_popup": "popup.html", "default_title": "WebScan", "default_icon": "icons\/icon.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ] } |