Web Canvas

A powerful vector based annotation tool to draw or write anything on web.

Что такое Web Canvas?

Web Canvas - это расширение Chrome, разработанное Jaiwanth, и его основная функция - "A powerful vector based annotation tool to draw or write anything on web.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Web Canvas

Скачайте файлы расширений Web Canvas в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Web canvas allows you to draw freehand, write text, create shapes on any web page. You can select, cut, copy and paste object selections using standard shortcuts. You can also save/copy the canvas to your clipboard. Reload the page after install to make it work.                    

Основная информация о расширении

Название Web Canvas Web Canvas
ID gldgnmiohepapnbomknpclpjciaomcfa
Официальный URL https://chromewebstore.google.com/detail/web-canvas/gldgnmiohepapnbomknpclpjciaomcfa
Описание A powerful vector based annotation tool to draw or write anything on web.
Размер файла 756 KB
Количество установок 48
Текущая Версия 3.2
Последнее Обновление 2022-05-16
Дата публикации 2021-05-14
Разработчик Jaiwanth
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/jaiwanth-v/web-canvas
URL страницы помощи https://github.com/jaiwanth-v/web-canvas
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Canvas",
    "manifest_version": 3,
    "version": "3.2",
    "description": "A powerful vector based annotation tool to draw or write anything on web.",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "pencil16.png",
        "32": "pencil32.png",
        "64": "pencil64.png",
        "128": "pencil128.png"
    }
}