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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 |
도움말 페이지 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 } } |