Focused Element

Highlight the focusing element and log it in console.

ما هو Focused Element؟

Focused Element هو إضافة Chrome تم تطويرها بواسطة LiJunLe، والميزة الرئيسية لها هي "Highlight the focusing element and log it in console.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Focused Element

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

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

                        During debugging a page, sometimes it is very hard to notice which element is focusing in the page. This extension will highlight the focusing element and log it in console. Even after turn off the extension, the developer can hover on the element in console to find back the element in DOM structure.                    

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

الاسم Focused Element Focused Element
ID elaccagjpdmjkcjogbdmcpcplfinifbh
عنوان URL الرسمي https://chromewebstore.google.com/detail/focused-element/elaccagjpdmjkcjogbdmcpcplfinifbh
الوصف Highlight the focusing element and log it in console.
حجم الملف 27.42 KB
عدد التثبيتات 1,140
النسخة الحالية 0.2.0
آخر تحديث 2020-09-04
تاريخ النشر 2019-04-20
تقييم 5.00/5 مجموع تقييمات 2
المطور LiJunLe
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/lijunle/chrome-extension-focused-element
عنوان صفحة المساعدة https://github.com/lijunle/chrome-extension-focused-element/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focused Element",
    "description": "Highlight the focusing element and log it in console.",
    "version": "0.2.0",
    "author": "Junle Li",
    "icons": {
        "16": "icons\/active-16.png",
        "32": "icons\/active-32.png",
        "48": "icons\/active-48.png",
        "128": "icons\/active-128.png"
    },
    "browser_action": {
        "default_title": "Enable",
        "default_icon": {
            "16": "icons\/inactive-16.png",
            "32": "icons\/inactive-32.png",
            "48": "icons\/inactive-48.png",
            "128": "icons\/inactive-128.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "lib\/background.js"
        ],
        "persistent": false
    }
}