JustLines

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

Τι είναι το JustLines;

Το JustLines είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Carlo Mandelli, και η κύρια λειτουργία του είναι "Draw lines in your browser and change colors and pen sizes scrolling the mouse wheel".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης JustLines

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
        }
    }
}