Web Canvas

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

Was ist Web Canvas?

Web Canvas ist eine Chrome-Erweiterung, die von Jaiwanth entwickelt wurde, und ihr Hauptmerkmal ist "A powerful vector based annotation tool to draw or write anything on web.".

Erweiterungsscreenshots

screenshot

Web Canvas-Erweiterungs-CRX-Datei herunterladen

Laden Sie Web Canvas-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Web Canvas Web Canvas
ID gldgnmiohepapnbomknpclpjciaomcfa
Offizielle URL https://chromewebstore.google.com/detail/web-canvas/gldgnmiohepapnbomknpclpjciaomcfa
Beschreibung A powerful vector based annotation tool to draw or write anything on web.
Dateigröße 756 KB
Installationsanzahl 48
Aktuelle Version 3.2
Letztes Update 2022-05-16
Veröffentlichungsdatum 2021-05-14
Entwickler Jaiwanth
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/jaiwanth-v/web-canvas
Hilfeseite URL https://github.com/jaiwanth-v/web-canvas
Unterstützte Sprachen 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"
    }
}