IP Address of the website
Get IP address of the website
ما هو IP Address of the website؟
IP Address of the website هو إضافة Chrome تم تطويرها بواسطة https://thebyteseffect.com، والميزة الرئيسية لها هي "Get IP address of the website".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة IP Address of the website
قم بتنزيل ملفات الامتداد IP Address of the website بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Find IP address of the website you need. Just click in the extension it will get you the current website ip address. This extension's source code is available here https://github.com/tonystark-93/website-ipAddress. Its MIT licensed. This extension doesn't communicate with external servers to serve the IP address of the websites rather it use chrome api's to get the IP address.
معلومات أساسية عن التمديد
الاسم | IP Address of the website |
ID | jlnllmeeiikknlgehjnonpkneemkfman |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/ip-address-of-the-website/jlnllmeeiikknlgehjnonpkneemkfman |
الوصف | Get IP address of the website |
حجم الملف | 83.88 KB |
عدد التثبيتات | 166 |
النسخة الحالية | 1.0.3 |
آخر تحديث | 2021-01-20 |
تاريخ النشر | 2020-05-27 |
المطور | https://thebyteseffect.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "name": "IP Address of the website", "description": "Get IP address of the website", "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.3", "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "name": "Get IP address of the website", "default_popup": "popup.html", "default_icon": { "48": "2.png" } }, "icons": { "16": "1.png", "48": "2.png", "128": "3.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "webRequest", "activeTab" ], "manifest_version": 2 } |