SVG Screenshot

Take scalable, semantic, accessible screenshots, in SVG format.

O que é SVG Screenshot?

SVG Screenshot é uma extensão do Chrome desenvolvida por felixfbecker, e sua principal característica é "Take scalable, semantic, accessible screenshots, in SVG format.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SVG Screenshot

Baixe arquivos de extensão SVG Screenshot 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

                        SVG screenshots offer various benefits over normal PNG screenshots, while keeping the good parts:

🖼 Flexible: Freely select the region of the website you want to capture or capture the whole page.
💢 Scalable graphics: Screenshots never get pixelated when zooming in.
📝 Semantic: Text can still be selected and copied to clipboard.
🦻 Accessible: SVG is annotated with ARIA attributes and can be read by screen readers.
🖥 Paste into design tools: SVGs will work in design tools like Illustrator, Figma, Sketch etc.
🔗 Interactive: Links are still clickable.
📦 Self-contained: Inlines external resources like images, fonts, etc.
📸 Static: Styles and layout are recorded at the time of snapshot and will not change.
🗜 Small: Depending on the content, SVGs can be magnitudes smaller than PNGs and compress loslessly.
🛡 Secure: The SVG will not contain any JavaScript.                    

Informações Básicas da Extensão

Nome SVG Screenshot SVG Screenshot
ID nfakpcpmhhilkdpphcjgnokknpbpdllg
URL Oficial https://chromewebstore.google.com/detail/svg-screenshot/nfakpcpmhhilkdpphcjgnokknpbpdllg
Descrição Take scalable, semantic, accessible screenshots, in SVG format.
Tamanho do Arquivo 511 KB
Contagem de Instalações 6,291
Versão Atual 0.11.5
Última Atualização 2021-05-24
Data de Publicação 2020-10-26
Classificação 4.36/5 Total de 25 Avaliações
Desenvolvedor felixfbecker
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/felixfbecker/svg-screenshots
URL da Página de Ajuda https://github.com/felixfbecker/svg-screenshots/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SVG Screenshot",
    "description": "Take scalable, semantic, accessible screenshots, in SVG format.",
    "version": "0.11.5",
    "permissions": [
        "activeTab",
        "",
        "storage"
    ],
    "icons": {
        "128": "images\/icon_128.png",
        "256": "images\/icon_256.png"
    },
    "web_accessible_resources": [
        "src\/content.js"
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_title": "Capture SVG screenshot",
        "default_icon": {
            "128": "images\/icon_128.png",
            "256": "images\/icon_256.png"
        }
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "svg-screenshots@felixfbecker"
        }
    }
}