ShowIp
Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.
Что такое ShowIp?
ShowIp - это расширение Chrome, разработанное https://opensource.teqneers.com, и его основная функция - "Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.".
Снимки экрана расширения
Скачать файл CRX расширения ShowIp
Скачайте файлы расширений ShowIp в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension works with Google Chrome 18 (beta) or higher. Основная информация о расширении
| Название | |
| ID | agoljmemkbciolpigpabjfkagboolkcj |
| Официальный URL | https://chromewebstore.google.com/detail/showip/agoljmemkbciolpigpabjfkagboolkcj |
| Описание | Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server. |
| Размер файла | 54.38 KB |
| Количество установок | 23,164 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2012-05-19 |
| Дата публикации | 2012-05-19 |
| Рейтинг | 3.50/5 Всего 80 оценок |
| Разработчик | https://opensource.teqneers.com |
| Тип оплаты | free |
| Официальный сайт расширения | http://opensource.teqneers.com/showip.html |
| Поддерживаемые языки | 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
} | |