Country IP
This extension polls and displays the country your current IP is in
Country IPとは何ですか?
Country IPはBrian Maherによって開発されたChromeの拡張機能で、その主な機能は「This extension polls and displays the country your current IP is in」です。
拡張機能のスクリーンショット
Country IP拡張機能のCRXファイルをダウンロード
Country IP拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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\/*" ] } |