Web Canvas

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

Co to jest Web Canvas?

Web Canvas to rozszerzenie Chrome opracowane przez Jaiwanth, a jego główną funkcją jest „A powerful vector based annotation tool to draw or write anything on web.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Web Canvas

Pobierz pliki rozszerzeń Web Canvas w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Web Canvas Web Canvas
ID gldgnmiohepapnbomknpclpjciaomcfa
Oficjalny URL https://chromewebstore.google.com/detail/web-canvas/gldgnmiohepapnbomknpclpjciaomcfa
Opis A powerful vector based annotation tool to draw or write anything on web.
Rozmiar pliku 756 KB
Liczba instalacji 48
Aktualna Wersja 3.2
Ostatnia Aktualizacja 2022-05-16
Data Publikacji 2021-05-14
Deweloper Jaiwanth
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jaiwanth-v/web-canvas
Adres URL Strony Pomocy https://github.com/jaiwanth-v/web-canvas
Obsługiwane Języki 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"
    }
}