Which host
show the IP of matched hostnames
ما هو Which host؟
Which host هو إضافة Chrome تم تطويرها بواسطة ylzcylx، والميزة الرئيسية لها هي "show the IP of matched hostnames".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Which host
قم بتنزيل ملفات الامتداد Which host بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
show the IP of matched hostnames. Source code at https://github.com/jdf2e/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" } |