ShowIp
Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.
Co to jest ShowIp?
ShowIp to rozszerzenie Chrome opracowane przez https://opensource.teqneers.com, a jego główną funkcją jest „Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ShowIp
Pobierz pliki rozszerzeń ShowIp w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension works with Google Chrome 18 (beta) or higher. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | agoljmemkbciolpigpabjfkagboolkcj |
| Oficjalny URL | https://chromewebstore.google.com/detail/showip/agoljmemkbciolpigpabjfkagboolkcj |
| Opis | Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server. |
| Rozmiar pliku | 54.38 KB |
| Liczba instalacji | 23,164 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2012-05-19 |
| Data Publikacji | 2012-05-19 |
| Ocena | 3.50/5 Łącznie 80 Oceny |
| Deweloper | https://opensource.teqneers.com |
| Typ Płatności | free |
| Strona Rozszerzenia | http://opensource.teqneers.com/showip.html |
| Obsługiwane Języki | 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
} | |