DrawR

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

什么是DrawR?

DrawR是由https://www.laurencecliff.com开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载DrawR扩展crx文件

下载DrawR扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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).                    

扩展基本信息

名称 DrawR DrawR
ID lbbkdcdfpgdbgfceieeicbpfhpcemppn
官方URL https://chromewebstore.google.com/detail/drawr/lbbkdcdfpgdbgfceieeicbpfhpcemppn
简介 This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot.
文件大小 39.25 KB
安装次数 2,075
当前版本 1.0
更新时间 2019-10-02
上架时间 2019-10-02
评分 1.69/5 共13次评分
开发者 https://www.laurencecliff.com
付费类型 free
支持的语言 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'"
}