Focused Element
Highlight the focusing element and log it in console.
什麼是Focused Element?
Focused Element是由LiJunLe開發的Chrome擴展程式,該擴展的主要功能是“Highlight the focusing element and log it in console.”。
擴展截圖
下載Focused Element擴展crx文件
下載Focused Element擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | elaccagjpdmjkcjogbdmcpcplfinifbh |
官方網址 | 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 |
說明頁面URL | 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 } } |