Elements Viewer

See your elements height and width on webpage

ما هو Elements Viewer؟

Elements Viewer هو إضافة Chrome تم تطويرها بواسطة Seke Nikola، والميزة الرئيسية لها هي "See your elements height and width on webpage".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Elements Viewer

قم بتنزيل ملفات الامتداد Elements Viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Element Viewer is a simple extension that helps front-end developers and designers to have a better visual representation of how elements are position on a web page.

Usage: Just press extension icon to toggle on and off.

Inspired by the tip from Gajus Kuizinas (https://github.com/gajus)                    

معلومات أساسية عن التمديد

الاسم Elements Viewer Elements Viewer
ID okglkbdhaneaglfmkmbkmglobmondaoc
عنوان URL الرسمي https://chromewebstore.google.com/detail/elements-viewer/okglkbdhaneaglfmkmbkmglobmondaoc
الوصف See your elements height and width on webpage
حجم الملف 5.61 KB
عدد التثبيتات 107
النسخة الحالية 1
آخر تحديث 2019-09-12
تاريخ النشر 2019-09-12
تقييم 5.00/5 مجموع تقييمات 3
المطور Seke Nikola
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Elements Viewer",
    "description": "See your elements height and width on webpage",
    "version": "1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "elements-viewer.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Elements Viewer"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "manifest_version": 2
}