Page Ruler

Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.

Page Ruler란 무엇입니까?

Page Ruler은(는) Page Ruler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Page Ruler is for measuring objects on web pages. Measure it width and height in pixels."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Page Ruler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Page Ruler is popular app for measuring elements on web pages. Measure it width and height in pixels on any websites.

Click the icon and draw ruler to get pixel dimensions. The color icon means the on mode for measuremen. The black and white icon means off.

Thank you for installation and please give Page Ruler five stars!                    

확장 프로그램 기본 정보

이름 Page Ruler Page Ruler
ID idhjfgkakeliobkfbijghiaklmiaheag
공식 URL https://chrome.google.com/webstore/detail/page-ruler/idhjfgkakeliobkfbijghiaklmiaheag
설명 Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.
파일 크기 92.3 KB
설치 횟수 54,686
현재 버전 2.0.0
최근 업데이트 2023-06-06
출시 날짜 2018-07-29
평점 1.25/5 총 71 개의 평점
개발자 Page Ruler
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "off.png",
        "default_title": "Page Ruler"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "styleMeasureIt.css"
            ],
            "js": [
                "measureIt.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Page Ruler is for measuring objects on web pages. Measure it width and height in pixels.",
    "manifest_version": 3,
    "name": "Page Ruler",
    "permissions": [
        "tabs",
        "storage"
    ],
    "version": "2.0.0",
    "icons": {
        "48": "ico_48.png",
        "16": "ico_16.png",
        "128": "ico_128.png",
        "19": "ico_19.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "injected_content.js"
            ]
        }
    ]
}