Does it use SVG?

Show an icon if a page uses SVG.

Does it use SVG?란 무엇입니까?

Does it use SVG?은(는) Philip Rogers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show an icon if a page uses SVG."입니다.

확장 프로그램 스크린샷

screenshot

Does it use SVG? 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension shows a small SVG icon on pages that use SVG content.                    

확장 프로그램 기본 정보

이름 Does it use SVG? Does it use SVG?
ID nmihkihinlonaiknpgifhlgdmbaibebi
공식 URL https://chromewebstore.google.com/detail/does-it-use-svg/nmihkihinlonaiknpgifhlgdmbaibebi
설명 Show an icon if a page uses SVG.
파일 크기 19.75 KB
설치 횟수 142
현재 버전 1.1
최근 업데이트 2013-02-28
출시 날짜 2013-02-27
평점 5.00/5 총 1 개의 평점
개발자 Philip Rogers
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Does it use SVG?",
    "version": "1.1",
    "description": "Show an icon if a page uses SVG.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "svg-19.png",
        "default_title": "Does it use SVG?"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "24": "svg-24.png",
        "48": "svg-48.png",
        "128": "svg-128.png"
    },
    "manifest_version": 2
}