Which host
show the IP of matched hostnames
Which host क्या है?
Which host ylzcylx द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "show the IP of matched hostnames"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Which host एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
show the IP of matched hostnames. Source code at https://github.com/jdf2e/which_host
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hjecimglpgbbajfigibmieancoegaema |
आधिकारिक URL | https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema |
विवरण | show the IP of matched hostnames |
फ़ाइल का आकार | 52.62 KB |
स्थापना संख्या | 48 |
वर्तमान संस्करण | 0.2 |
अंतिम अपडेट | 2017-09-19 |
प्रकाशन तिथि | 2017-09-19 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | ylzcylx |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jdf2e/which_host |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Which host", "description": "show the IP of matched hostnames", "version": "0.2", "author": "loveky", "icons": { "48": "icon.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "setting.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "which_host.css" ], "js": [ "which_host.js" ] } ], "permissions": [ "webRequest", "tabs", "*:\/\/*\/" ], "background": { "scripts": [ "background.js" ] }, "homepage_url": "https:\/\/github.com\/loveky\/which_host" } |