Focused Element

Highlight the focusing element and log it in console.

Focused Element là gì?

Focused Element là một tiện ích mở rộng Chrome được phát triển bởi LiJunLe, và tính năng chính của nó là "Highlight the focusing element and log it in console.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Focused Element

Tải xuống các tệp mở rộng Focused Element dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Focused Element Focused Element
ID elaccagjpdmjkcjogbdmcpcplfinifbh
URL Chính Thức https://chromewebstore.google.com/detail/focused-element/elaccagjpdmjkcjogbdmcpcplfinifbh
Mô tả Highlight the focusing element and log it in console.
Kích Thước Tệp 27.42 KB
Số Lần Cài Đặt 1,140
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2020-09-04
Ngày Phát Hành 2019-04-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển LiJunLe
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lijunle/chrome-extension-focused-element
URL Trang Trợ Giúp https://github.com/lijunle/chrome-extension-focused-element/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}