IP Address of the website
Get IP address of the website
¿Qué es IP Address of the website?
IP Address of the website es una extensión de Chrome desarrollada por https://thebyteseffect.com, y su función principal es "Get IP address of the website".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión IP Address of the website
Descarga archivos de extensión IP Address of the website 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
Find IP address of the website you need. Just click in the extension it will get you the current website ip address. This extension's source code is available here https://github.com/tonystark-93/website-ipAddress. Its MIT licensed. This extension doesn't communicate with external servers to serve the IP address of the websites rather it use chrome api's to get the IP address.
Información Básica de la Extensión
Nombre | IP Address of the website |
ID | jlnllmeeiikknlgehjnonpkneemkfman |
URL Oficial | https://chromewebstore.google.com/detail/ip-address-of-the-website/jlnllmeeiikknlgehjnonpkneemkfman |
Descripción | Get IP address of the website |
Tamaño del Archivo | 83.88 KB |
Cantidad de Instalaciones | 166 |
Versión Actual | 1.0.3 |
Última Actualización | 2021-01-20 |
Fecha de Publicación | 2020-05-27 |
Desarrollador | https://thebyteseffect.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "name": "IP Address of the website", "description": "Get IP address of the website", "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.3", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "name": "Get IP address of the website", "default_popup": "popup.html", "default_icon": { "48": "2.png" } }, "icons": { "16": "1.png", "48": "2.png", "128": "3.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "activeTab" ], "manifest_version": 2 } |