svg-grabber - get all the svg's from a site

A tool to quickly preview and get all the svg assets from a website.

O que é svg-grabber - get all the svg's from a site?

svg-grabber - get all the svg's from a site é uma extensão do Chrome desenvolvida por NGTI, e sua principal característica é "A tool to quickly preview and get all the svg assets from a website.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão svg-grabber - get all the svg's from a site

Baixe arquivos de extensão svg-grabber - get all the svg's from a site 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

                        Quickly preview and copy or download all the SVG assets from a website. 

svg-grabber lets you preview, download and copy the code all SVG icons and illustrations in a website.  

svg-grabber is an open source tool created by Jaques Bouman and Juan Rios at NGTI in Rotterdam, The Netherlands. Available for download, forking on Github at https://github.com/ngti/svg-grabber

Check https://ngti.nl

You can follow Juan Rios here: https://twitter.com/juanrios_nl


Note
-----------------------------
Some of the logos design and the artwork you can download are the intellectual property of the copyright and/or trademark holder and are offered to you as a convenience for lawful use with proper permission from the copyright and/or trademark holder only.                    

Informações Básicas da Extensão

Nome svg-grabber - get all the svg's from a site svg-grabber - get all the svg's from a site
ID ndakggdliegnegeclmfgodmgemdokdmg
URL Oficial https://chromewebstore.google.com/detail/svg-grabber-get-all-the-s/ndakggdliegnegeclmfgodmgemdokdmg
Descrição A tool to quickly preview and get all the svg assets from a website.
Tamanho do Arquivo 45.77 KB
Contagem de Instalações 132,636
Versão Atual 1.0.0
Última Atualização 2018-02-05
Data de Publicação 2018-02-05
Classificação 4.12/5 Total de 91 Avaliações
Desenvolvedor NGTI
Tipo de Pagamento free
Site da Extensão https://ngti.nl
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "svg-grabber - get all the svg's from a site",
    "short_name": "svg-grabber",
    "description": "A tool to quickly preview and get all the svg assets from a website.",
    "version": "1.0.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "svggrabber48.png"
    },
    "icons": {
        "16": "svggrabber16.png",
        "48": "svggrabber48.png",
        "128": "svggrabber128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}