Color Picker-颜色选择器-屏幕颜色吸取

一个屏幕颜色选择工具,在浏览器外也能选择。A screen color selection tool that can be selected outside the browser.

Color Picker-颜色选择器-屏幕颜色吸取란 무엇입니까?

Color Picker-颜色选择器-屏幕颜色吸取은(는) liurenhong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "一个屏幕颜色选择工具,在浏览器外也能选择。A screen color selection tool that can be selected outside the browser."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Color Picker-颜色选择器-屏幕颜色吸取 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        吸色器,不仅限于浏览器中;显示器视口中任何位置的颜色都能获取                    

확장 프로그램 기본 정보

이름 Color Picker-颜色选择器-屏幕颜色吸取 Color Picker-颜色选择器-屏幕颜色吸取
ID jgiioaomnnacjcppmjmligbadpekakji
공식 URL https://chromewebstore.google.com/detail/color-picker-%E9%A2%9C%E8%89%B2%E9%80%89%E6%8B%A9%E5%99%A8-%E5%B1%8F%E5%B9%95%E9%A2%9C%E8%89%B2%E5%90%B8%E5%8F%96/jgiioaomnnacjcppmjmligbadpekakji
설명 一个屏幕颜色选择工具,在浏览器外也能选择。A screen color selection tool that can be selected outside the browser.
파일 크기 8.22 KB
설치 횟수 181
현재 버전 1.0
최근 업데이트 2021-11-06
출시 날짜 2021-11-01
개발자 liurenhong
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lfbok/Color-Picker
도움말 페이지 URL https://github.com/lfbok/Color-Picker
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Picker-\u989c\u8272\u9009\u62e9\u5668-\u5c4f\u5e55\u989c\u8272\u5438\u53d6",
    "description": "\u4e00\u4e2a\u5c4f\u5e55\u989c\u8272\u9009\u62e9\u5de5\u5177\uff0c\u5728\u6d4f\u89c8\u5668\u5916\u4e5f\u80fd\u9009\u62e9\u3002A screen color selection tool that can be selected outside the browser.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}