DrawR

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

DrawR là gì?

DrawR là một tiện ích mở rộng Chrome được phát triển bởi https://www.laurencecliff.com, và tính năng chính của nó là "This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DrawR

Tải xuống các tệp mở rộng DrawR dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DrawR DrawR
ID lbbkdcdfpgdbgfceieeicbpfhpcemppn
URL Chính Thức https://chromewebstore.google.com/detail/drawr/lbbkdcdfpgdbgfceieeicbpfhpcemppn
Mô tả This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot.
Kích Thước Tệp 39.25 KB
Số Lần Cài Đặt 2,075
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-10-02
Ngày Phát Hành 2019-10-02
Đánh Giá 1.69/5 Tổng số 13 Đánh Giá
Nhà Phát Triển https://www.laurencecliff.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}