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

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

svg-grabber - get all the svg's from a site란 무엇입니까?

svg-grabber - get all the svg's from a site은(는) NGTI에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool to quickly preview and get all the svg assets from a website."입니다.

확장 프로그램 스크린샷

screenshot

svg-grabber - get all the svg's from a site 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 svg-grabber - get all the svg's from a site svg-grabber - get all the svg's from a site
ID ndakggdliegnegeclmfgodmgemdokdmg
공식 URL https://chromewebstore.google.com/detail/svg-grabber-get-all-the-s/ndakggdliegnegeclmfgodmgemdokdmg
설명 A tool to quickly preview and get all the svg assets from a website.
파일 크기 45.77 KB
설치 횟수 132,636
현재 버전 1.0.0
최근 업데이트 2018-02-05
출시 날짜 2018-02-05
평점 4.12/5 총 91 개의 평점
개발자 NGTI
결제 유형 free
확장 프로그램 웹 사이트 https://ngti.nl
지원되는 언어 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"
            ]
        }
    ]
}