Country IP

This extension polls and displays the country your current IP is in

Country IP là gì?

Country IP là một tiện ích mở rộng Chrome được phát triển bởi Brian Maher, và tính năng chính của nó là "This extension polls and displays the country your current IP is in".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Country IP

Tải xuống các tệp mở rộng Country IP dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Country IP Country IP
ID bhkilkmhahfjncfoddpdpmpeggmoefgg
URL Chính Thức https://chrome.google.com/webstore/detail/country-ip/bhkilkmhahfjncfoddpdpmpeggmoefgg
Mô tả This extension polls and displays the country your current IP is in
Kích Thước Tệp 147 KB
Số Lần Cài Đặt 472
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2016-05-29
Ngày Phát Hành 2016-05-29
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Brian Maher
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}