Page Ruler

Page Ruler: Draw rulers on web pages to check element alignment in Chrome.

Page Ruler란 무엇입니까?

Page Ruler은(는) https://sudarshanrai.com.np에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Page Ruler: Draw rulers on web pages to check element alignment in Chrome."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Page Ruler is a browser extension that allows you to draw a ruler on any web page to check the alignment of page elements. With it, you can easily draw line guides to help you align elements. 

To use Page Ruler, simply click on the extension icon in the browser toolbar and enable it, then click on top of the window and drag a line on the page to draw a ruler. You can adjust the ruler's position by dragging the line. You can also use the options menu to change the color and style of the ruler. With Page Ruler, you can quickly and easily check the alignment of your UI elements to ensure that your web page looks professional and well-designed.                    

확장 프로그램 기본 정보

이름 Page Ruler Page Ruler
ID eccmicoahcpagbnibfolooaocnlceieg
공식 URL https://chromewebstore.google.com/detail/page-ruler/eccmicoahcpagbnibfolooaocnlceieg
설명 Page Ruler: Draw rulers on web pages to check element alignment in Chrome.
파일 크기 15.33 KB
설치 횟수 4,257
현재 버전 2.2
최근 업데이트 2023-12-08
출시 날짜 2023-01-02
평점 3.80/5 총 10 개의 평점
개발자 https://sudarshanrai.com.np
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://chrome-extension-docs.vercel.app/page-ruler/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Page Ruler",
    "description": "Page Ruler: Draw rulers on web pages to check element alignment in Chrome.",
    "version": "2.2",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": "assets\/default_icon.png"
    },
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "src\/scripts\/utils.js",
                "src\/scripts\/helper.js",
                "src\/scripts\/app.js"
            ],
            "css": [
                "src\/styles\/inject.css"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}