Canvas downloader. Find and export.
Extension helps detect if canvas is used at the web page and allows to export and save canvas content.
Was ist Canvas downloader. Find and export.?
Canvas downloader. Find and export. ist eine Chrome-Erweiterung, die von santriseus entwickelt wurde, und ihr Hauptmerkmal ist "Extension helps detect if canvas is used at the web page and allows to export and save canvas content.".
Erweiterungsscreenshots
Canvas downloader. Find and export.-Erweiterungs-CRX-Datei herunterladen
Laden Sie Canvas downloader. Find and export.-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
Extension helps detect if canvas is used at the web page and allows to export and download static canvas content in multiple formats. Extension could be helpful if creator of the web site disabled the canvas context menu with "Save As" option. You could see the counter with the number of detected canvas elements in the extension icon, if any canvas detected. Sometimes the counter at the icon could be different from the real amount of available canvas elements, because of the security concerns like "Cross-Origin Resource Sharing" policies applied to source images.
Grundlegende Informationen zur Erweiterung
Name | Canvas downloader. Find and export. |
ID | dgfcgcafnnbdpojemnkiiilnnghebgja |
Offizielle URL | https://chromewebstore.google.com/detail/canvas-downloader-find-an/dgfcgcafnnbdpojemnkiiilnnghebgja |
Beschreibung | Extension helps detect if canvas is used at the web page and allows to export and save canvas content. |
Dateigröße | 75.57 KB |
Installationsanzahl | 5,292 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2024-01-03 |
Veröffentlichungsdatum | 2018-07-27 |
Bewertung | 4.07/5 Insgesamt 14 Bewertungen |
Entwickler | santriseus |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/santriseus/canvas-downloader |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Canvas downloader. Find and export.", "short_name": "Canvas downloader.", "version": "1.0.0", "manifest_version": 3, "description": "Extension helps detect if canvas is used at the web page and allows to export and save canvas content.", "homepage_url": "https:\/\/github.com\/santriseus\/canvas-detect-and-download", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_title": "Canvas downloader. Detect and export.", "default_popup": "src\/popup\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/inject.js" ], "run_at": "document_idle", "all_frames": true } ], "background": { "service_worker": "src\/service_worker.js" }, "permissions": [ "downloads" ] } |