DrawR

This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot.

Qu'est-ce que DrawR ?

DrawR est une extension Chrome développée par https://www.laurencecliff.com, et sa fonction principale est "This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension DrawR

Téléchargez les fichiers d'extension DrawR au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension allows you to draw on the current web page, pick the line colour and thickness and take a screenshot. You can also choose to draw circles, rectangles and straight lines. The screenshot is automatically downloaded in the browser.

Click to draw freehand.
Hold Shift whilst clicking to draw a straight line.
Hold Ctrl whilst clicking to draw a circle.
Hold Alt whilst clicking to draw a rectangle.

Ctrl + Shift + S - triggers the popup and starts the extension on the page.
Ctrl + Shift + Q - triggers clearing the drawings and closing the extension (with a prompt to confirm).                    

Informations de Base sur l'Extension

Nom DrawR DrawR
ID lbbkdcdfpgdbgfceieeicbpfhpcemppn
URL Officiel https://chromewebstore.google.com/detail/drawr/lbbkdcdfpgdbgfceieeicbpfhpcemppn
Description This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot.
Taille du Fichier 39.25 KB
Nombre d'Installations 2,075
Version Actuelle 1.0
Dernière Mise à Jour 2019-10-02
Date de Publication 2019-10-02
Évaluation 1.69/5 Total 13 Évaluations
Développeur https://www.laurencecliff.com
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "assets\/icon_16.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "__MSG_extensionName__"
    },
    "web_accessible_resources": [
        "assets\/*.png"
    ],
    "default_locale": "en",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+S",
                "chromeos": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S"
            }
        },
        "clear-canvas": {
            "suggested_key": {
                "default": "Ctrl+Shift+Q",
                "mac": "Command+Shift+Q"
            },
            "description": "Removes Drawr canvas"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}