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文件

下載JustLines擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    }
}