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 là gì?

Magnifier and Color Picker With VscExtension là một tiện ích mở rộng Chrome được phát triển bởi Sung Ye In, và tính năng chính của nó là "This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Magnifier and Color Picker With VscExtension

Tải xuống các tệp mở rộng Magnifier and Color Picker With VscExtension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Magnifier and Color Picker With VscExtension Magnifier and Color Picker With VscExtension
ID imbkipjikhdedklmnhhlpmjmgclgeoak
URL Chính Thức https://chromewebstore.google.com/detail/magnifier-and-color-picke/imbkipjikhdedklmnhhlpmjmgclgeoak
Mô tả This is Magnifier and ColorPicker in Your Chrome ! Functions : : COLOR PICKER You can select a color on the chrome extension…
Kích Thước Tệp 44.24 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2022-04-22
Ngày Phát Hành 2022-04-22
Nhà Phát Triển Sung Ye In
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}