Public IP
Information about your public IP
Public IP क्या है?
Public IP sunkike द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Information about your public IP"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Public IP एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Information about your public IP Features: - You can see your public IP in a button on Chrome. - You can see your country icon of your public IP. - If you mouse over the flag, you can see your public ip. - if your ip changes the button shows the times that it changed. If you click the button it shows the last IP's changes. If you want new features don't doubt to leave a comment. This is a evolution of this chrome extension: https://chrome.google.com/webstore/detail/info-ip/ljaikkdaeokocficpgcbaicnchpghcbh
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hdncepcaknamfckdlajmjamjegcnjaea |
आधिकारिक URL | https://chrome.google.com/webstore/detail/public-ip/hdncepcaknamfckdlajmjamjegcnjaea |
विवरण | Information about your public IP |
फ़ाइल का आकार | 288 KB |
स्थापना संख्या | 56 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2015-03-07 |
प्रकाशन तिथि | 2015-03-07 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | sunkike |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Public IP", "short_name": "Public_ip", "version": "1.0.1", "minimum_chrome_version": "18", "description": "Information about your public IP", "icons": { "16": "\/images\/icon16.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "19": "\/images\/icon16.png", "38": "\/images\/icon48.png" }, "default_title": "Public IP", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "storage" ], "content_scripts": [ { "all_frames": false, "run_at": "document_end", "js": [ "jquery-infoip.js", "business.js" ], "css": [ "css\/customStyleIP.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "web_accessible_resources": [ "images\/iconFlags\/24\/*.png", "functionsIP.js" ] } |