IP Show - Shows external IP, country, quality

Shows external IP, its quality and country. Real time fixing of the external IP change.

IP Show - Shows external IP, country, qualityคืออะไร?

IP Show - Shows external IP, country, quality เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RAWIRA LTD และคุณลักษณะหลักของมันคือ "Shows external IP, its quality and country. Real time fixing of the external IP change."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IP Show - Shows external IP, country, quality

ดาวน์โหลดไฟล์ส่วนขยาย IP Show - Shows external IP, country, quality ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The extension conveniently displays the external IP, its country and quality (data center, proxy / vpn service, presence in black lists, etc.).

When the external IP changes,  it is shown a message about that.

The extension allows to control working with websites that are sensitive to IP changes.

Please note that you can configure hotkeys to:
- display the extension settings window
- hide / show information window
- minimize / maximize information window                    

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

ชื่อ IP Show - Shows external IP, country, quality IP Show - Shows external IP, country, quality
ID ikbpjhjmjhlnfdgfmglfohmcpmngmmkc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/ip-show-shows-external-ip/ikbpjhjmjhlnfdgfmglfohmcpmngmmkc
คำอธิบาย Shows external IP, its quality and country. Real time fixing of the external IP change.
ขนาดไฟล์ 360 KB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 3.0.7
อัปเดตครั้งล่าสุด 2021-05-26
วันที่เผยแพร่ 2020-12-23
คะแนน 4.89/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา RAWIRA LTD
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://rawira.ua/privacy.html
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IP Show - Shows external IP, country, quality",
    "version": "3.0.7",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "Profile.js",
                "index.js",
                "options.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Shows external IP, its quality and country. Real time fixing of the external IP change.",
    "icons": {
        "128": "data\/icons\/128.png",
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "Profile.js",
            "bgp.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "IP Show - Shows external IP, country, IP quality",
        "default_icon": "data\/icons\/128.png",
        "default_popup": "options.html"
    },
    "short_name": "IPShow",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_browser_action": {
            "description": "__MSG_commandOpenPopup__",
            "suggested_key": {
                "default": "Ctrl+Shift+I",
                "mac": "Command+Shift+I"
            }
        },
        "show_or_hide_badge": {
            "description": "__MSG_commandTogleBadge__",
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            }
        },
        "minimize_maximize_badge": {
            "description": "__MSG_commandMinMaxBadge__",
            "suggested_key": {
                "default": "Ctrl+Shift+M",
                "mac": "Command+Shift+M"
            }
        }
    },
    "default_locale": "en",
    "web_accessible_resources": [
        "flags\/*.*"
    ]
}