Chrome Color Picker

A chrome debugger style color picker plugin

Chrome Color Pickerคืออะไร?

Chrome Color Picker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย guowenfh และคุณลักษณะหลักของมันคือ "A chrome debugger style color picker plugin"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome Color Picker

ดาวน์โหลดไฟล์ส่วนขยาย Chrome Color Picker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A Chrome DevTools  debugger style color picker plugin.

After installation, you need to refresh the page to be picked. Use `Alt + Shift + A` to quickly call / close the color picker.

Strongly powered by pnpm + vue3 + vite. Use EyeDropper to support global color selection !

source:https://github.com/guowenfh/chrome-color-picker

FAQ: If you can't use the plugin the first time you install it, just refresh the page!


一款 Chrome 控制台调试器风格的取色器插件。
安装后需要刷新一下待取色页面, 使用 Alt+Shift+A 可以快捷呼出/关闭取色器。

使用 pnpm + vue3 + vite 强力驱动。使用 EyeDropper 支持全局进行颜色选取!

第一次安装无法使用插件的,刷新一下网页就可以了!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chrome Color Picker Chrome Color Picker
ID ojaclcbknieckfcapcbifaijoocfmpaj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-color-picker/ojaclcbknieckfcapcbifaijoocfmpaj
คำอธิบาย A chrome debugger style color picker plugin
ขนาดไฟล์ 93.1 KB
จำนวนการติดตั้ง 4,479
เวอร์ชันปัจจุบัน 2.3.0
อัปเดตครั้งล่าสุด 2023-08-04
วันที่เผยแพร่ 2020-03-29
คะแนน 4.10/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา guowenfh
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/guowenfh/chrome-color-picker
URL หน้าช่วยเหลือ https://github.com/guowenfh/chrome-color-picker/issues
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Color Picker",
    "version": "2.3.0",
    "description": "A chrome debugger style color picker plugin",
    "browser_action": {
        "default_icon": ".\/assets\/icons\/48.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "background": {
        "page": ".\/dist\/background\/index.html",
        "persistent": false
    },
    "icons": {
        "16": ".\/assets\/icons\/16.png",
        "48": ".\/assets\/icons\/48.png",
        "128": ".\/assets\/icons\/128.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "storage",
        "activeTab",
        "contextMenus",
        ""
    ],
    "commands": {
        "color-picker-start": {
            "suggested_key": {
                "windows": "Alt + Shift + A",
                "mac": "MacCtrl + Shift + A"
            },
            "description": "Quick Color Pick-up"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "dist\/contentScripts\/style.css"
    ]
}