Better Ruler

A page ruler which can snaps around web elements for easier measurement. Provide convenience for front-end development and ui design

Better Ruler란 무엇입니까?

Better Ruler은(는) paul에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A page ruler which can snaps around web elements for easier measurement. Provide convenience for front-end development and ui design"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        A ruler which can snaps around web elements for easier measurement. Provide convenience for front-end development and ui design.


- Click on the plugin icon to run the plugin. Click again to exit.
- Hold down `Alt/Option` while moving the mouse to display the size of the element at the mouse position in real time. Hold down the left button and move, it will automatically snap to the edge of the element.
- Double-click the current layer to enter the editing mode, in which the layer can be dragged and resized. Press `Backspace` to delete the current layer. Double-click on the layer again (or press `Esc`) to exit edit mode. 
- Press `f`(default, configurable) to show or hide the toolbar.
- Press `shift` to show or hide the size. 
- You can use `alt+z` to activate/deactivate the plug-in. If it doesn't work, you can go to chrome://extensions/shortcuts to bind the key yourself. Or, After activating the plugin once, you can double-press `z` (default, configurable) to activate/deactivate the plug-in.
- Go to chrome://extensions, find this plug-in and turn on `allow access to file URL` to take effect for local html files.                    

확장 프로그램 기본 정보

이름 Better Ruler Better Ruler
ID ilcnadaaninblgbekoaihdhoiecaflie
공식 URL https://chromewebstore.google.com/detail/better-ruler/ilcnadaaninblgbekoaihdhoiecaflie
설명 A page ruler which can snaps around web elements for easier measurement. Provide convenience for front-end development and ui design
파일 크기 93.66 KB
설치 횟수 24,873
현재 버전 1.3.12
최근 업데이트 2023-02-16
출시 날짜 2020-03-20
평점 4.80/5 총 46 개의 평점
개발자 paul
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Ruler",
    "short_name": "Ruler",
    "version": "1.3.12",
    "manifest_version": 3,
    "default_locale": "zh_CN",
    "description": "__MSG_pluginDesc__",
    "author": "paul",
    "icons": {
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_title": "Better Ruler"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Z",
                "windows": "Alt+Z",
                "mac": "Alt+Z",
                "linux": "Alt+Z"
            },
            "description": "Toggle Ruler"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": ".\/background.js"
    }
}