Canvas downloader. Find and export.

Extension helps detect if canvas is used at the web page and allows to export and save canvas content.

O que é Canvas downloader. Find and export.?

Canvas downloader. Find and export. é uma extensão do Chrome desenvolvida por santriseus, e sua principal característica é "Extension helps detect if canvas is used at the web page and allows to export and save canvas content.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Canvas downloader. Find and export.

Baixe arquivos de extensão Canvas downloader. Find and export. no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Canvas downloader. Find and export. Canvas downloader. Find and export.
ID dgfcgcafnnbdpojemnkiiilnnghebgja
URL Oficial https://chromewebstore.google.com/detail/canvas-downloader-find-an/dgfcgcafnnbdpojemnkiiilnnghebgja
Descrição Extension helps detect if canvas is used at the web page and allows to export and save canvas content.
Tamanho do Arquivo 75.57 KB
Contagem de Instalações 5,292
Versão Atual 1.0.0
Última Atualização 2024-01-03
Data de Publicação 2018-07-27
Classificação 4.07/5 Total de 14 Avaliações
Desenvolvedor santriseus
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/santriseus/canvas-downloader
Idiomas Suportados 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"
    ]
}