SVG Copy to clipboard

This Chrome extension allows you to copy inline svg code to your clipboard

SVG Copy to clipboard란 무엇입니까?

SVG Copy to clipboard은(는) KC Computing에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This Chrome extension allows you to copy inline svg code to your clipboard"입니다.

확장 프로그램 스크린샷

screenshot

SVG Copy to clipboard 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to copy inline SVG code to your clipboard by right clicking on an inline SVG and selecting the "Copy SVG Code to Clipboard" option from the context menu. 

NOTE: I have been getting a lot of 1 star reviews for this extension due to users not understanding what "Inline SVG" means, please understand that inline means you can actually see the svg code in with the html code when you inspect the page. This will NOT copy svg's in image tags, nor will it copy icons that are not SVG's.
I use this extension almost everyday on a multitude of sites and have no problems with copying INLINE svgs.
Please contact me about your problems before jumping to giving a FREE extension an undeserved 1 star review.

This extension was developed for our team to make it faster to get SVG's from Font Awesome (as we have the pro license)
Icon made by Freepik (http://www.freepik.com) from www.flaticon.com and is is licensed by CC 3.0 (http://creativecommons.org/licenses/by/3.0/)                    

확장 프로그램 기본 정보

이름 SVG Copy to clipboard SVG Copy to clipboard
ID bkhampfdmillcjnggcacmbllkcefmdam
공식 URL https://chrome.google.com/webstore/detail/svg-copy-to-clipboard/bkhampfdmillcjnggcacmbllkcefmdam
설명 This Chrome extension allows you to copy inline svg code to your clipboard
파일 크기 45.38 KB
설치 횟수 1,000
현재 버전 1.0
최근 업데이트 2020-03-23
출시 날짜 2020-03-23
평점 3.40/5 총 10 개의 평점
개발자 KC Computing
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://kccomputing.net/
도움말 페이지 URL https://kccomputing.net/contact-me/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SVG Copy to clipboard",
    "description": "This Chrome extension allows you to copy inline svg code to your clipboard",
    "version": "1.0",
    "author": "Kyle Charlton and Christian Longe",
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}