Which host
show the IP of matched hostnames
Apa itu Which host?
Which host adalah ekstensi Chrome yang dikembangkan oleh ylzcylx, dan fitur utamanya adalah "show the IP of matched hostnames".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Which host
Unduh file ekstensi Which host dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
show the IP of matched hostnames. Source code at https://github.com/jdf2e/which_host
Informasi Dasar Ekstensi
Nama | |
ID | hjecimglpgbbajfigibmieancoegaema |
URL Resmi | https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema |
Deskripsi | show the IP of matched hostnames |
Ukuran File | 52.62 KB |
Jumlah Instalasi | 48 |
Versi Saat Ini | 0.2 |
Terakhir Diperbarui | 2017-09-19 |
Tanggal Publikasi | 2017-09-19 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | ylzcylx |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/jdf2e/which_host |
Bahasa yang Didukung | 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" } |