MeasureIt!

MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.

MeasureIt!란 무엇입니까?

MeasureIt!은(는) Online Apps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels."입니다.

확장 프로그램 스크린샷

screenshot

MeasureIt! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        MeasureIt shows positioning and dimensions in pixel points. You can measure height and width of elements on web page.

HOW IT WORKS 
• Click to the icon of app on the current web page.  
• Draw ruler page and shows width, height, positioning of element.
• Click the icon again to exit the measurement.                    

확장 프로그램 기본 정보

이름 MeasureIt! MeasureIt!
ID keoagpbljgpdoldcmfpgicnpijmfompi
공식 URL https://chromewebstore.google.com/detail/measureit/keoagpbljgpdoldcmfpgicnpijmfompi
설명 MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.
파일 크기 103 KB
설치 횟수 12,336
현재 버전 1.2.4
최근 업데이트 2022-10-05
출시 날짜 2020-06-13
평점 1.97/5 총 37 개의 평점
개발자 Online Apps
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "jquery.min.js",
            "backgroundMeasureIt.js"
        ]
    },
    "browser_action": {
        "default_icon": "off.png",
        "default_title": "MeasureIt"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "styleMeasureIt.css"
            ],
            "js": [
                "measureIt.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "MeasureIt is useful app for measurement width and height of webpages. Measure it in pixels.",
    "manifest_version": 2,
    "name": "MeasureIt!",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "1.2.4",
    "icons": {
        "48": "ico_48.png",
        "128": "ico_128.png"
    }
}