Scrawl

Draw on any web page with excalidraw.

Scrawl là gì?

Scrawl là một tiện ích mở rộng Chrome được phát triển bởi lukepigeonmail, và tính năng chính của nó là "Draw on any web page with excalidraw.".

Ả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 Scrawl

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

                        Scrawl lets you draw on any webpage with excalidraw. You can trigger the extension using a keyboard shortcut (default cmd/ctrl+shift+e) and on pdf pages you can trigger the extension by pressing `show scrawl` in the bottom right of your screen. The drawings created by scrawl are stored in local storage and are associated with the exact URL of the page you are on. You can change the background blur  and default keyboard shortcut by clicking the extension icon.                    

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

Tên Scrawl Scrawl
ID egoccpljknghnoighgpjahfekpcnifma
URL Chính Thức https://chromewebstore.google.com/detail/scrawl/egoccpljknghnoighgpjahfekpcnifma
Mô tả Draw on any web page with excalidraw.
Kích Thước Tệp 1.79 MB
Số Lần Cài Đặt 369
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2021-08-04
Ngày Phát Hành 2021-07-18
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển lukepigeonmail
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lukesmurray/scrawl
URL Trang Trợ Giúp https://github.com/lukesmurray/scrawl/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scrawl",
    "description": "Draw on any web page with excalidraw.",
    "version": "0.2.1",
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png",
            "300": "\/images\/icon300.png"
        },
        "default_title": "Scrawl"
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png",
        "300": "\/images\/icon300.png"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "excalidraw-assets\/*",
        "excalidraw-assets-dev\/*"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{534e0a54-1bc9-4c1a-bf03-c3f4ea70cc01}"
        }
    }
}