JustLines

Draw lines in your browser and change colors and pen sizes scrolling the mouse wheel

JustLines란 무엇입니까?

JustLines은(는) Carlo Mandelli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Draw lines in your browser and change colors and pen sizes scrolling the mouse wheel"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        JustLines is a Chrome extension to quickly draw simple colored lines in your browser. You can do it on remote or local sites and even pdf files.

You can use it during presentation to highlight some contents or draw simple schemas.

I like to use these kind of tools during presentations and I needed a quick way to change colors and pen size without using popups or options menu but do it keeping the mouse at the current position on the draw. So I decided to use mouse wheel as main controller to change colors and pen size.

Features:

* press "Ctrl+Shit+S" or click on the extension icon to enable/disable drawing mode
* you can also press "ESC" to disable drawing mode
* keep "left button" pressed and move the mouse to draw
* change pen colors scrolling the "mouse wheel"
* change pen size pressing "Shift" and scrolling the "mouse wheel"
* clear draw pressing "Space" or disabling drawing mode                    

확장 프로그램 기본 정보

이름 JustLines JustLines
ID bcknpenfnepljiliemadceoinjajphco
공식 URL https://chromewebstore.google.com/detail/justlines/bcknpenfnepljiliemadceoinjajphco
설명 Draw lines in your browser and change colors and pen sizes scrolling the mouse wheel
파일 크기 29.85 KB
설치 횟수 436
현재 버전 0.1.0
최근 업데이트 2020-08-12
출시 날짜 2020-08-11
평점 3.00/5 총 3 개의 평점
개발자 Carlo Mandelli
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/camandel/JustLines
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JustLines",
    "version": "0.1.0",
    "description": "Draw lines in your browser and change colors and pen sizes scrolling the mouse wheel",
    "homepage_url": "https:\/\/github.com\/camandel\/JustLines",
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "JustLines shortcuts:\n\n- Click the icon to enable\/disable drawing mode\n- Ctrl+Shift+S to enable\/disable drawing mode\n- ESC to disable drawing mode\n- Mouse wheel to change pen colors\n- Shift+Mouse wheel to change pen size\n- Space to clear the draw\n",
        "default_icon": "img\/icon19-disabled.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Toggle feature"
        }
    }
}