Country IP
This extension polls and displays the country your current IP is in
Country IP क्या है?
Country IP Brian Maher द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension polls and displays the country your current IP is in"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Country IP एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
An extension to poll each minute and show geographical details about your current IP. The extension icon will be the country flag where your IP is found to be located. The extension polls every minute in case your IP changes (e.g. you lose VPN connection). The flag will update when this occurs (assuming the new IP is in another country) You will see details such as city, country code, region, zip, your ISP and Organization for the IP. An image on Google Maps showing the location of the IP will be displayed at the bottom.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | bhkilkmhahfjncfoddpdpmpeggmoefgg |
आधिकारिक URL | https://chrome.google.com/webstore/detail/country-ip/bhkilkmhahfjncfoddpdpmpeggmoefgg |
विवरण | This extension polls and displays the country your current IP is in |
फ़ाइल का आकार | 147 KB |
स्थापना संख्या | 472 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2016-05-29 |
प्रकाशन तिथि | 2016-05-29 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Brian Maher |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Country IP", "description": "This extension polls and displays the country your current IP is in", "version": "1.2", "icons": { "128": "images\/ext_icon_128.png", "48": "images\/ext_icon_48.png", "16": "images\/ext_icon_16.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html", "default_title": "Click for more IP details" }, "background": { "scripts": [ "jquery.min.js", "eventPage.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs", "alarms", "http:\/\/ip-api.com\/json\/*", "https:\/\/www.whatismyip.com\/images\/flags\/*", "https:\/\/ajax.googleapis.com\/", "https:\/\/maps.googleapis.com\/maps\/api\/*" ] } |