Magnifier and Color Picker With VscExtension

This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…

Magnifier and Color Picker With VscExtension란 무엇입니까?

Magnifier and Color Picker With VscExtension은(는) Sung Ye In에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Magnifier and Color Picker With VscExtension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is Magnifier and ColorPicker in Your Chrome !

Functions :
: COLOR PICKER
You can select a color on the chrome extension popup.
If you right click the circle in the palette, you can see the color big.

: MAGNIFIER
You can run it by pressing the bottom button of the pop-up window or shortcuts.
When the color is active, you can paste the color code into Ctrl + Alt + V in Vscode Extension.
- left mouse click : add color.

Shortcuts:
: RUN MAGNIFIER
window = ctrl + shift + space 
mac = command + shift + space

VScodeExtension in Market place : https://marketplace.visualstudio.com/items?itemName=syi0808.picking                    

확장 프로그램 기본 정보

이름 Magnifier and Color Picker With VscExtension Magnifier and Color Picker With VscExtension
ID imbkipjikhdedklmnhhlpmjmgclgeoak
공식 URL https://chromewebstore.google.com/detail/magnifier-and-color-picke/imbkipjikhdedklmnhhlpmjmgclgeoak
설명 This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…
파일 크기 44.24 KB
설치 횟수 60
현재 버전 0.0.1
최근 업데이트 2022-04-22
출시 날짜 2022-04-22
개발자 Sung Ye In
이메일 [email protected]
결제 유형 free
지원되는 언어 ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Magnifier and Color Picker With VscExtension",
    "minimum_chrome_version": "88",
    "version": "0.0.1",
    "homepage_url": "https:\/\/github.com\/syi0808",
    "icons": [],
    "action": {
        "default_popup": ".\/index.html"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/index.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "commands": {
        "magnifier": {
            "suggested_key": {
                "default": "Shift+Ctrl+Space",
                "mac": "Command+Shift+Space"
            },
            "description": "Starting Magnifier"
        }
    }
}