Draw on Page

Easily draw on any website with simple drawing tools, then print the result.

Draw on Page là gì?

Draw on Page là một tiện ích mở rộng Chrome được phát triển bởi leocompson, và tính năng chính của nó là "Easily draw on any website with simple drawing tools, then print the result.".

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

screenshot

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

Tải xuống các tệp mở rộng Draw on Page 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

                        Draw on Page is a browser extension that lets you draw on any website. Please first navigate to a website, then press on the toolbar button to activate the add-on. Once the interface appears on the page, please choose the desired mode. 

Currently, there are two modes available, Drawing Mode and Brushing Mode. Brushing mode is for drawing with mouse or pen (touch-enabled devices) on the page. You can choose a pencil, circle, or spray brush in this mode. There is also an option to change the color and width of the brushing tool from the UI. The other mode is for drawing shapes (Drawing Mode). When you select this mode, five different primitive shapes are available to choose from the UI. Once you click on a shape, it will be added to the screen. 

You can drag and drop, remove, resize, or rotate and zoom objects on the screen. To print the page with your drawings on it, please press on the print button at the top left corner of the screen. Once you are done with the drawing, please close the interface by pressing on the close button at the top left corner or pressing on the toolbar button once. Before closing, you can save your drawings by pressing on the - Save - button at the bottom of the UI.

Note: this extension uses fabric.js (https://github.com/fabricjs/fabric.js) open-source JavaScript project for drawing on the HTML5 canvas element.

If you have a feature request or found a bug to report, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/draw-on-page.html).                    

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

Tên Draw on Page Draw on Page
ID ngmfehckdahhmlbabjemcepfhgnoddlo
URL Chính Thức https://chromewebstore.google.com/detail/draw-on-page/ngmfehckdahhmlbabjemcepfhgnoddlo
Mô tả Easily draw on any website with simple drawing tools, then print the result.
Kích Thước Tệp 301 KB
Số Lần Cài Đặt 94,282
Phiên Bản Hiện Tại 0.1.5
Cập Nhật Lần Cuối 2023-12-21
Ngày Phát Hành 2020-08-25
Đánh Giá 3.86/5 Tổng số 35 Đánh Giá
Nhà Phát Triển leocompson
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mybrowseraddon.com/draw-on-page.html
URL Trang Trợ Giúp https://mybrowseraddon.com/draw-on-page.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.5",
    "manifest_version": 3,
    "name": "Draw on Page",
    "offline_enabled": true,
    "homepage_url": "https:\/\/mybrowseraddon.com\/draw-on-page.html",
    "description": "Easily draw on any website with simple drawing tools, then print the result.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "data\/interface\/index.html"
            ]
        }
    ],
    "permissions": [
        "storage",
        "scripting",
        "activeTab",
        "contextMenus"
    ],
    "action": {
        "default_title": "Draw on Page",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}