Linetef

Linetef intention is to allow users to quickly add guide lines to either check if two elements are aligned, measure elements or…

Linetef란 무엇입니까?

Linetef은(는) Nicolás Tinte에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Linetef intention is to allow users to quickly add guide lines to either check if two elements are aligned, measure elements or…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Linetef intention is to allow users to quickly add guide lines to either check if two elements are aligned, measure elements or check the distance between them.

Features:
- Create guides in the screen in order to measure elements (both horizontal and vertical guides).
- See the distances between elements (or measures) in pixels or percentage mode.
- See the viewport size (width x height).
- Select the color of the created guides.
- Choose the position of the rulers (top/bottom and left/right of the screen).
- Show/hide the whole extension.
- Show/hide the distances between elements (useful if you just want to see if some elements are aligned).
- Show/hide the viewport size

And it also provides some shortcuts!
- Show/hide extension: [ctrl + shift + O]
- Show/hide distances: [ctrl + shift + D]
- Show/hide viewport: [ctrl + shift + V]
- Toggle between modes: [ctrl + shift + M]
- Delete guide: [Grab a guide + del]
- Delete all guides: [ctrl + del]
- Reset configs: [ctrl + R]
- Change horizontal ruler position: [ctrl + shift + T/B]
- Change vertical ruler position: [ctrl + shift + L/R]                    

확장 프로그램 기본 정보

이름 Linetef Linetef
ID gbfhinhmeankiibbmnapdehibcdcbgef
공식 URL https://chromewebstore.google.com/detail/linetef/gbfhinhmeankiibbmnapdehibcdcbgef
설명 Linetef intention is to allow users to quickly add guide lines to either check if two elements are aligned, measure elements or…
파일 크기 173 KB
설치 횟수 2,055
현재 버전 0.2.1
최근 업데이트 2020-04-07
출시 날짜 2020-04-06
평점 4.70/5 총 10 개의 평점
개발자 Nicolás Tinte
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tintef/linetef
도움말 페이지 URL https://github.com/tintef/linetef/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Linetef",
    "description": "",
    "version": "0.2.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "Linetef",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}