Public IP

Information about your public IP

什麼是Public IP?

Public IP是由sunkike開發的Chrome擴展程式,該擴展的主要功能是“Information about your public IP”。

擴展截圖

screenshot

下載Public IP擴展crx文件

下載Public IP擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Public IP Public IP
ID hdncepcaknamfckdlajmjamjegcnjaea
官方網址 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"
    ]
}