Website IP

Simple script which places the IP of the current website in the bottom right.

Website IP là gì?

Website IP là một tiện ích mở rộng Chrome được phát triển bởi Benjamin Santalucia, và tính năng chính của nó là "Simple script which places the IP of the current website in the bottom right.".

Ả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 Website IP

Tải xuống các tệp mở rộng Website 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

                        This simple extension allow you to see the IP address of the website you are currently looking at.

Fork of https://github.com/tinybigideas/WebsiteIP

FEATURES
========

Simple solution to always show the current websites IP address instead of clicking through an extension.
Allow to copy the IP to the clipboard.

No load of JQuery so it does not stop the debugger when "Pause on all exeption" is active

Moves left or right on mouse over, it won't get in your way

IPv6 support

No external server to return IP - your chrome does all the work locally

Clean, attractive and does the job.

PRIVACY
=======

No-one sees the IP but you.

There is no reliance on an external server to return the IP.

Chrome returns the IP address itself on the users side.

This takes into consideration local DNS and Host changes.

FORK ME:
========
https://github.com/ben8p/WebsiteIP                    

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

Tên Website IP Website IP
ID agbkjcoclkflcpkognkhjkllhimlpice
URL Chính Thức https://chromewebstore.google.com/detail/website-ip/agbkjcoclkflcpkognkhjkllhimlpice
Mô tả Simple script which places the IP of the current website in the bottom right.
Kích Thước Tệp 28.39 KB
Số Lần Cài Đặt 1,286
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2016-04-25
Ngày Phát Hành 2016-04-25
Đánh Giá 3.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Benjamin Santalucia
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ben8p/WebsiteIP
URL Trang Trợ Giúp https://github.com/ben8p/WebsiteIP/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "version": "1.1.0",
    "author": "Benjamin Santalucia",
    "minimum_chrome_version": "18",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "tabs",
        "webRequest",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/icon48.png",
        "default_popup": "popup.html"
    },
    "homepage_url": "https:\/\/github.com\/ben8p\/WebsiteIP",
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "ip.js"
            ],
            "css": [
                "css\/ip.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}