Overflow-detector
A tool to detect which DOM element causes a horizontal scroll
Overflow-detector란 무엇입니까?
Overflow-detector은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool to detect which DOM element causes a horizontal scroll"입니다.
확장 프로그램 스크린샷
Overflow-detector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This tool iterate through all HTML DOM elements and compare their width with it's parent to check which element is exceeding its parent's width. Except some special circumstances, that DOM element which exceeds their parent element might be causing the horizontal scroll to the parent. When HTML stack is not properly ordered, this might be causing a horizontal scroll to the HTML body itself i.e. A page level scroll. During development, developers find it hard to detect which element is causing this horizontal scroll. They will inspect each and every DOM element to find the root of their problem manually. This tool will help doing it easily.
확장 프로그램 기본 정보
이름 | |
ID | gpdnihamialibcjfmdnfbjcljnfbgkbc |
공식 URL | https://chromewebstore.google.com/detail/overflow-detector/gpdnihamialibcjfmdnfbjcljnfbgkbc |
설명 | A tool to detect which DOM element causes a horizontal scroll |
파일 크기 | 12.06 KB |
설치 횟수 | 1,263 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2020-05-21 |
출시 날짜 | 2020-05-21 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Overflow-detector", "version": "0.1.0", "description": "A tool to detect which DOM element causes a horizontal scroll", "manifest_version": 2, "author": "Aravinth Ramesh", "icons": { "128": "images\/Overflow-detector-logo-128.png" }, "browser_action": { "default_icon": { "16": "images\/Overflow-detector-logo-16.png", "32": "images\/Overflow-detector-logo-32.png", "48": "images\/Overflow-detector-logo-48.png", "128": "images\/Overflow-detector-logo-128.png" }, "default_title": "An extension to find the DOM element which is causing the horizontal scroll.", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens hello.html" } }, "content_scripts": [ { "matches": [ " |