IP Address of the website

Get IP address of the website

Что такое IP Address of the website?

IP Address of the website - это расширение Chrome, разработанное https://thebyteseffect.com, и его основная функция - "Get IP address of the website".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения IP Address of the website

Скачайте файлы расширений IP Address of the website в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название IP Address of the website IP Address of the website
ID jlnllmeeiikknlgehjnonpkneemkfman
Официальный URL https://chromewebstore.google.com/detail/ip-address-of-the-website/jlnllmeeiikknlgehjnonpkneemkfman
Описание Get IP address of the website
Размер файла 83.88 KB
Количество установок 166
Текущая Версия 1.0.3
Последнее Обновление 2021-01-20
Дата публикации 2020-05-27
Разработчик https://thebyteseffect.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
}