Canvas downloader. Find and export.
Extension helps detect if canvas is used at the web page and allows to export and save canvas content.
Что такое Canvas downloader. Find and export.?
Canvas downloader. Find and export. - это расширение Chrome, разработанное santriseus, и его основная функция - "Extension helps detect if canvas is used at the web page and allows to export and save canvas content.".
Снимки экрана расширения
Скачать файл CRX расширения Canvas downloader. Find and export.
Скачайте файлы расширений Canvas downloader. Find and export. в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Canvas downloader. Find and export. |
ID | dgfcgcafnnbdpojemnkiiilnnghebgja |
Официальный URL | https://chromewebstore.google.com/detail/canvas-downloader-find-an/dgfcgcafnnbdpojemnkiiilnnghebgja |
Описание | Extension helps detect if canvas is used at the web page and allows to export and save canvas content. |
Размер файла | 75.57 KB |
Количество установок | 5,292 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2024-01-03 |
Дата публикации | 2018-07-27 |
Рейтинг | 4.07/5 Всего 14 оценок |
Разработчик | santriseus |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/santriseus/canvas-downloader |
Поддерживаемые языки | 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" ] } |