Display IP Address Plugin

This extension will display your current IP Address on the page

Display IP Address Plugin क्या है?

Display IP Address Plugin justin.munro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will display your current IP Address on the page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Display IP Address Plugin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Clicking the extension icon will display your current IP Address in a box in the browser window.

As simple as that, no need to navigate away to another web page.

You can then click on the IP Address to copy it to your clipboard. There are also options to change the colour of the box and font as well as the positioning of the box.

Clicking the extension icon will display your IP address and clicking the icon again will hide it.

Any feedback you have is much appreciated.

==== Update: 23rd April 2020 ====
Just a simple update to say I've made a couple of improvements to how this extension works. This should especially improve the way this extension works when on browser tabs it is not allowed to run on, for example: chrome://flags/


==== Update: 19th February 2019 ====

A browser technology l use to help in obtaining the IP addresses has been updated and this stopped the IP address lookup working. This issue has now been fixed and the extension is now working properly again.


==== Update: 6th November 2018 ====

An issue was reported where after the first successful use of finding an IP address this extension stopped working. I have fixed an issue that may occur if the extension is run multiple times in succession so this should hopefully solve that issue. 


==== Update: 14th February 2018 ====

It seems some Ad Blockers were stopping this extension from working. I've now updated the code so it gets around this issue and works regardless of an Ad Blocker being in use.                    

एक्सटेंशन की मूल जानकारी

नाम Display IP Address Plugin Display IP Address Plugin
ID bdkjfcbjopmjplpfplpbgkbmehdhbkke
आधिकारिक URL https://chromewebstore.google.com/detail/display-ip-address-plugin/bdkjfcbjopmjplpfplpbgkbmehdhbkke
विवरण This extension will display your current IP Address on the page
फ़ाइल का आकार 58.79 KB
स्थापना संख्या 440
वर्तमान संस्करण 1.0.12
अंतिम अपडेट 2020-04-27
प्रकाशन तिथि 2020-04-27
रेटिंग 2.50/5 कुल 4 रेटिंग्स
डेवलपर justin.munro
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Display IP Address Plugin",
    "description": "This extension will display your current IP Address on the page",
    "version": "1.0.12",
    "author": "Justin Munro",
    "content_security_policy": "script-src 'self' https:\/\/ipify.org https:\/\/jsonip.com https:\/\/ipinfo.io\/json; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_title": "Show your IP Address",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}