Country IP

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

Country IPคืออะไร?

Country IP เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brian Maher และคุณลักษณะหลักของมันคือ "This extension polls and displays the country your current IP is in"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Country IP

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Country IP Country IP
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\/*"
    ]
}