ShowIp
Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.
Cos'è ShowIp?
ShowIp è un'estensione di Chrome sviluppata da https://opensource.teqneers.com, e la sua funzione principale è "Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ShowIp
Scarica i file di estensione ShowIp in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension works with Google Chrome 18 (beta) or higher. Informazioni di Base sull'Estensione
| Nome | |
| ID | agoljmemkbciolpigpabjfkagboolkcj |
| URL Ufficiale | https://chromewebstore.google.com/detail/showip/agoljmemkbciolpigpabjfkagboolkcj |
| Descrizione | Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server. |
| Dimensione del File | 54.38 KB |
| Conteggio Installazioni | 23,164 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2012-05-19 |
| Data di Pubblicazione | 2012-05-19 |
| Valutazione | 3.50/5 Totale 80 Valutazioni |
| Sviluppatore | https://opensource.teqneers.com |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://opensource.teqneers.com/showip.html |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ShowIp",
"minimum_chrome_version": "18",
"version": "1.0",
"description": "Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.",
"icons": {
"16": "icons\/icon_016.png",
"48": "icons\/icon_048.png",
"128": "icons\/icon_128.png"
},
"permissions": [
"webRequest",
"*:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"all_frames": false,
"css": [
"ip.css"
],
"js": [
"jquery-1.7.1.min.js",
"ip.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end"
}
],
"manifest_version": 2
} | |