HTML Layout X-Ray
Displays the html page layout, frames, border, sections, tables etc.
ما هو HTML Layout X-Ray؟
HTML Layout X-Ray هو إضافة Chrome تم تطويرها بواسطة Arjun، والميزة الرئيسية لها هي "Displays the html page layout, frames, border, sections, tables etc.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HTML Layout X-Ray
قم بتنزيل ملفات الامتداد HTML Layout X-Ray بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Easily check how HTML Layout is rendered and debug the space border issues.
معلومات أساسية عن التمديد
الاسم | HTML Layout X-Ray |
ID | galjejegpfplkacednnfipedcdfdpiak |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/html-layout-x-ray/galjejegpfplkacednnfipedcdfdpiak |
الوصف | Displays the html page layout, frames, border, sections, tables etc. |
حجم الملف | 20.78 KB |
عدد التثبيتات | 35 |
النسخة الحالية | 1.0 |
آخر تحديث | 2022-07-02 |
تاريخ النشر | 2022-07-01 |
المطور | Arjun |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "HTML Layout X-Ray", "description": "Displays the html page layout, frames, border, sections, tables etc.", "version": "1.0", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |