Which host

show the IP of matched hostnames

Which hostคืออะไร?

Which host เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ylzcylx และคุณลักษณะหลักของมันคือ "show the IP of matched hostnames"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Which host ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        show the IP of matched hostnames.

Source code at https://github.com/jdf2e/which_host                    

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

ชื่อ Which host Which host
ID hjecimglpgbbajfigibmieancoegaema
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema
คำอธิบาย show the IP of matched hostnames
ขนาดไฟล์ 52.62 KB
จำนวนการติดตั้ง 48
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2017-09-19
วันที่เผยแพร่ 2017-09-19
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา ylzcylx
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jdf2e/which_host
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Which host",
    "description": "show the IP of matched hostnames",
    "version": "0.2",
    "author": "loveky",
    "icons": {
        "48": "icon.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "setting.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "which_host.css"
            ],
            "js": [
                "which_host.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "tabs",
        "*:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "homepage_url": "https:\/\/github.com\/loveky\/which_host"
}