Chromium Vector Icon Painter

Draws vector .icon files in the Chromium repository as SVG images.

Chromium Vector Icon Painter란 무엇입니까?

Chromium Vector Icon Painter은(는) https://thorium.rocks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Draws vector .icon files in the Chromium repository as SVG images."입니다.

확장 프로그램 스크린샷

screenshot

Chromium Vector Icon Painter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Extension which can draw .icon files locally, as well as in the Chromium repository at https://chromium.googlesource.com/chromium/src.git                    

확장 프로그램 기본 정보

이름 Chromium Vector Icon Painter Chromium Vector Icon Painter
ID cnlndebkegcfnbiknohgneobakigplhf
공식 URL https://chromewebstore.google.com/detail/chromium-vector-icon-pain/cnlndebkegcfnbiknohgneobakigplhf
설명 Draws vector .icon files in the Chromium repository as SVG images.
파일 크기 381 KB
설치 횟수 386
현재 버전 0.2.5
최근 업데이트 2023-09-03
출시 날짜 2022-06-28
개발자 https://thorium.rocks
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Alex313031/Chromium-Vector-Icons
도움말 페이지 URL https://github.com/Alex313031/Chromium-Vector-Icons/issues
개인정보 보호 정책 페이지 URL https://thorium.rocks/COC.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "css": [
                "css\/vector_icon.css"
            ],
            "js": [
                "js\/vector_icon.js",
                "js\/cs.js"
            ],
            "matches": [
                "*:\/\/cs.chromium.org\/*",
                "*:\/\/www.chromium.org\/*",
                "*:\/\/source.chromium.org\/chromium\/*",
                "*:\/\/chromium.googlesource.com\/chromium\/*",
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_end"
        },
        {
            "css": [
                "css\/vector_icon.css"
            ],
            "js": [
                "js\/vector_icon.js",
                "js\/gitiles.js"
            ],
            "matches": [
                "*:\/\/cs.chromium.org\/*",
                "*:\/\/www.chromium.org\/*",
                "*:\/\/source.chromium.org\/chromium\/*",
                "*:\/\/chromium.googlesource.com\/chromium\/*",
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_end"
        },
        {
            "css": [
                "css\/vector_icon.css"
            ],
            "js": [
                "js\/vector_icon.js",
                "js\/file.js"
            ],
            "matches": [
                "file:\/\/*icon"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Draws vector .icon files in the Chromium repository as SVG images.",
    "host_permissions": [
        "*:\/\/cs.chromium.org\/*",
        "*:\/\/www.chromium.org\/*",
        "*:\/\/source.chromium.org\/chromium\/*",
        "*:\/\/chromium.googlesource.com\/chromium\/*",
        "file:\/\/*icon",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "ftp:\/\/*\/*"
    ],
    "icons": {
        "128": "imgs\/icon_128.png",
        "16": "imgs\/icon_16.png",
        "19": "imgs\/icon_19.png",
        "24": "imgs\/icon_24.png",
        "256": "imgs\/icon_256.png",
        "32": "imgs\/icon_32.png",
        "38": "imgs\/icon_38.png",
        "48": "imgs\/icon_48.png",
        "64": "imgs\/icon_64.png"
    },
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "name": "Chromium Vector Icon Painter",
    "short_name": "Chromium Vectorizor",
    "author": "Alex313031",
    "homepage_url": "https:\/\/github.com\/Alex313031\/Chromium-Vector-Icons",
    "offline_enabled": true,
    "version": "0.2.5",
    "version_name": "0.2.5"
}